diff --git a/Cargo.lock b/Cargo.lock index 3dfb6e7607..c17f2817fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5287,7 +5287,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", - "log", "wasi", "windows-sys 0.48.0", ] @@ -6398,7 +6397,7 @@ dependencies = [ "libp2p-identity", "local-ip-address", "mina-p2p-messages", - "mio 0.8.11", + "mio 1.0.3", "multiaddr", "multihash 0.18.1", "openmina-core", diff --git a/node/common/Cargo.toml b/node/common/Cargo.toml index cb21007560..56552ba676 100644 --- a/node/common/Cargo.toml +++ b/node/common/Cargo.toml @@ -41,7 +41,7 @@ redux = { workspace = true, features=["serializable_callbacks"] } tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] } tracing-appender = "0.2.3" libp2p-identity = { version = "=0.2.7", features = ["ed25519", "rand", "serde"] } -mio = { version = "1.0.2", features = ["os-poll", "net"] } +mio = { version = "1.0.3", features = ["os-poll", "net"] } reqwest = { version = "0.12.8", features = ["blocking", "json"] } aws-config = { version = "1.1.7", features = ["behavior-version-latest"] } aws-sdk-s3 = "1.73.0" diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index da7160516e..1ae108df95 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -86,7 +86,7 @@ datachannel = { git = "https://github.com/openmina/datachannel-rs.git", rev = "1 ] } rcgen = { version = "0.13", features = ["pem", "x509-parser"], optional = true } reqwest = { version = "0.11", features = ["json"] } -mio = { version = "0.8.11", features = ["os-poll", "net"] } +mio = { version = "1.0.3", features = ["os-poll", "net"] } libc = { version = "0.2.151" } local-ip-address = "0.6.1"