Skip to content

Commit

Permalink
Merge pull request #17 from freenet/cleanup
Browse files Browse the repository at this point in the history
Bump up versions and cleanup warnings
  • Loading branch information
iduartgomez committed Apr 15, 2024
2 parents f28e671 + c8be7df commit f5597df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions rust/Cargo.toml
Expand Up @@ -15,9 +15,9 @@ byteorder = "1"
blake3 = { version = "1", features = ["std", "traits-preview"] }
bs58 = "0.5"
chrono = { version = "0.4", default-features = false, features = ["alloc", "serde"] }
flatbuffers = "23.5.26"
flatbuffers = "24.3"
futures = "0.3"
semver = { version = "1.0.14", features = ["serde"] }
semver = { version = "1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
Expand All @@ -32,7 +32,7 @@ freenet-macros = { path = "../rust-macros", version = "0.0.5" }

[target.'cfg(any(unix, windows))'.dependencies]
tokio = { version = "1", optional = true, features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-tungstenite = { version = "0.20", optional = true }
tokio-tungstenite = { version = "0.21", optional = true }
serde_with = { version = "3" }

[target.'cfg(target_family = "wasm")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rust/src/memory.rs
Expand Up @@ -26,7 +26,7 @@ impl WasmLinearMem {

#[cfg(feature = "contract")]
pub mod wasm_interface {
use crate::{contract_interface::wasm_interface::ContractInterfaceResult, prelude::*};
use crate::prelude::*;

fn set_logger() -> Result<(), ContractInterfaceResult> {
#[cfg(feature = "trace")]
Expand Down

0 comments on commit f5597df

Please sign in to comment.