diff --git a/Cargo.lock b/Cargo.lock index 4524ca02b7..384405f483 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9013,9 +9013,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.2" +version = "1.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" +checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 5b211ac095..499df2b4a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -145,7 +145,7 @@ time = { version = "0.3.39", features = [ "macros", "serde", ] } -tokio = { version = "1.44.2", features = ["full"] } +tokio = { version = "1.45.0", 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 3798192135..e1bfc4e9a9 100644 --- a/crates/chat-cli/Cargo.toml +++ b/crates/chat-cli/Cargo.toml @@ -131,7 +131,7 @@ time = { version = "0.3.39", features = [ "macros", "serde", ] } -tokio = { version = "1.44.2", features = ["full"] } +tokio = { version = "1.45.0", 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 21fb6b1bb5..4114317a22 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.44.2", optional = true, features = [ +tokio = { version = "1.45.0", 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.44.2", features = [ +tokio = { version = "1.45.0", features = [ "macros", "rt-multi-thread", "fs",