diff --git a/Cargo.lock b/Cargo.lock index 59d3eaf..1cf40b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ "env_logger", "futures", "log", - "mio", + "mio 1.0.0", "octocrab", "reqwest", "ropey", @@ -777,11 +777,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", - "log", "wasi", "windows-sys 0.48.0", ] +[[package]] +name = "mio" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4929e1f84c5e54c3ec6141cd5d8b5a5c055f031f80cf78f2072920173cb4d880" +dependencies = [ + "hermit-abi", + "libc", + "log", + "wasi", + "windows-sys 0.52.0", +] + [[package]] name = "new_debug_unreachable" version = "1.0.4" @@ -1626,7 +1638,7 @@ dependencies = [ "backtrace", "bytes", "libc", - "mio", + "mio 0.8.11", "num_cpus", "pin-project-lite", "signal-hook-registry", diff --git a/Cargo.toml b/Cargo.toml index 25dc4f5..4856448 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ dashmap = "5.5.3" env_logger = "0.11.2" futures = "0.3.30" log = "0.4.21" -mio = "0.8.11" +mio = "1.0.0" octocrab = "0.38.0" reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls"] } ropey = "1.6.1"