diff --git a/CHANGELOG.md b/CHANGELOG.md index 56194b7c7..8f8ffa6d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -110,6 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ([#1228](https://github.com/o1-labs/openmina/pull/1228)) - Remove OpenMina forks of arkworks and proof-systems ([#1383](https://github.com/o1-labs/mina-rust/pull/1383)) +- Bump mio from 1.0.3 to 1.0.4 + ([#1384](https://github.com/o1-labs/mina-rust/pull/1384)) ### Other diff --git a/Cargo.lock b/Cargo.lock index 94db0d351..a80dfadc6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5292,7 +5292,7 @@ dependencies = [ "mina-p2p-messages", "mina-signer", "mina-tree", - "mio 1.0.3", + "mio 1.0.4", "node", "rand", "rayon", @@ -5647,14 +5647,14 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" +checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" dependencies = [ "libc", "log", "wasi", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6423,7 +6423,7 @@ dependencies = [ "mina-fuzzer", "mina-macros", "mina-p2p-messages", - "mio 1.0.3", + "mio 1.0.4", "multiaddr", "multihash 0.18.1", "p2p-testing", diff --git a/node/common/Cargo.toml b/node/common/Cargo.toml index e37e5343d..dc215dece 100644 --- a/node/common/Cargo.toml +++ b/node/common/Cargo.toml @@ -45,7 +45,7 @@ libp2p-identity = { version = "=0.2.7", features = [ "rand", "serde", ] } -mio = { version = "1.0.3", features = ["os-poll", "net"] } +mio = { version = "1.0.4", 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 ef8c001ea..0db5edcc2 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 = "1.0.3", features = ["os-poll", "net"] } +mio = { version = "1.0.4", features = ["os-poll", "net"] } libc = { version = "0.2.151" } local-ip-address = "0.6.1"