diff --git a/Cargo.lock b/Cargo.lock index 946ae414..904abb68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5188,6 +5188,17 @@ dependencies = [ "rustversion", ] +[[package]] +name = "io-uring" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "libc", +] + [[package]] name = "ioctl-rs" version = "0.1.6" @@ -9846,17 +9857,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.1" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "parking_lot", "pin-project-lite", "signal-hook-registry", + "slab", "socket2", "tokio-macros", "tracing", diff --git a/Cargo.toml b/Cargo.toml index bb141778..c02eac3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -147,7 +147,7 @@ time = { version = "0.3.39", features = [ "macros", "serde", ] } -tokio = { version = "1.45.0", features = ["full"] } +tokio = { version = "1.46.1", features = ["full"] } tokio-tungstenite = "0.26.2" tokio-util = { version = "0.7.15", features = ["codec", "compat"] } toml = "0.8.12" diff --git a/crates/chat-cli/Cargo.toml b/crates/chat-cli/Cargo.toml index d5b88867..4cabb950 100644 --- a/crates/chat-cli/Cargo.toml +++ b/crates/chat-cli/Cargo.toml @@ -138,7 +138,7 @@ time = { version = "0.3.39", features = [ "macros", "serde", ] } -tokio = { version = "1.45.0", features = ["full"] } +tokio = { version = "1.46.1", features = ["full"] } tokio-tungstenite = "0.26.2" tokio-util = { version = "0.7.15", features = ["codec", "compat"] } toml = "0.8.12" diff --git a/crates/zbus/Cargo.toml b/crates/zbus/Cargo.toml index 4114317a..e330f2f5 100644 --- a/crates/zbus/Cargo.toml +++ b/crates/zbus/Cargo.toml @@ -68,7 +68,7 @@ static_assertions = "1.1.0" async-trait = "0.1.87" async-fs = { version = "2.1.2", optional = true } # FIXME: We should only enable process feature for Mac OS. See comment on async-process below for why we can't. -tokio = { version = "1.45.0", optional = true, features = [ +tokio = { version = "1.46.1", optional = true, features = [ "rt", "net", "time", @@ -120,7 +120,7 @@ ntest = "0.9.2" test-log = { version = "0.2.17", features = [ "trace", ], default-features = false } -tokio = { version = "1.45.0", features = [ +tokio = { version = "1.46.1", features = [ "macros", "rt-multi-thread", "fs",