diff --git a/Cargo.lock b/Cargo.lock index 534f5bbae2..9f27462ecc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1398,7 +1398,7 @@ dependencies = [ "bitflags 1.3.2", "crossterm_winapi 0.9.0", "libc", - "mio 0.8.2", + "mio 0.8.6", "parking_lot 0.12.0", "signal-hook 0.3.15", "signal-hook-mio", @@ -3708,16 +3708,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" +checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" dependencies = [ "libc", "log", - "miow", - "ntapi", "wasi 0.11.0+wasi-snapshot-preview1", - "winapi 0.3.9", + "windows-sys 0.45.0", ] [[package]] @@ -4041,7 +4039,7 @@ dependencies = [ "inotify", "kqueue", "libc", - "mio 0.8.2", + "mio 0.8.6", "walkdir 2.3.3", "windows-sys 0.42.0", ] @@ -5942,7 +5940,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" dependencies = [ "libc", - "mio 0.8.2", + "mio 0.8.6", "signal-hook 0.3.15", ] @@ -6491,33 +6489,31 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.20.0" +version = "1.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" +checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f" dependencies = [ "autocfg", "bytes", "libc", - "memchr", - "mio 0.8.2", + "mio 0.8.6", "num_cpus", - "once_cell", "pin-project-lite", "signal-hook-registry", "socket2 0.4.9", "tokio-macros", - "winapi 0.3.9", + "windows-sys 0.48.0", ] [[package]] name = "tokio-macros" -version = "1.8.2" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" +checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2 1.0.56", "quote 1.0.26", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] @@ -6763,7 +6759,7 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "rand 0.8.5", "static_assertions", ] diff --git a/Cargo.toml b/Cargo.toml index e8b0fe7942..2c3aaa689c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -127,7 +127,7 @@ chrono = { version = "0.4.24", default-features=false, features = ["clock", "std chrono-tz = { version = "0.8", features = ["serde"] } inline_tweak = { version = "1.0.8" } -tokio = { version = "1.20", default-features = false, features = ["rt"] } +tokio = { version = "1.28", default-features = false, features = ["rt"] } tracing = { version = "0.1" } futures-util = { version = "0.3.7", default-features = false } prometheus = { version = "0.13", default-features = false}