diff --git a/Cargo.lock b/Cargo.lock index 9f98e5c0..1ce9b355 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2174,9 +2174,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.1" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d040ac2b29ab03b09d4129c2f5bbd012a3ac2f79d38ff506a4bf8dd34b0eac8a" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index 5499526b..40ca7220 100644 --- a/brush-core/Cargo.toml +++ b/brush-core/Cargo.toml @@ -32,7 +32,7 @@ thiserror = "1.0.62" tracing = "0.1.40" [target.'cfg(target_family = "wasm")'.dependencies] -tokio = { version = "1.37.0", features = [ +tokio = { version = "1.39.2", features = [ "io-util", "macros", "rt", @@ -41,7 +41,7 @@ tokio = { version = "1.37.0", features = [ [target.'cfg(any(windows, unix))'.dependencies] hostname = "0.4.0" os_pipe = { version = "1.1.5", features = ["io_safety"] } -tokio = { version = "1.37.0", features = [ +tokio = { version = "1.39.2", features = [ "io-util", "macros", "process", diff --git a/brush-interactive/Cargo.toml b/brush-interactive/Cargo.toml index 6d99f6ca..ce45890a 100644 --- a/brush-interactive/Cargo.toml +++ b/brush-interactive/Cargo.toml @@ -27,4 +27,4 @@ tracing = "0.1.40" rustyline = { package = "brush-rustyline-fork", version = "14.0.1", features = [ "derive", ] } -tokio = { version = "1.37.0", features = ["macros", "signal"] } +tokio = { version = "1.39.2", features = ["macros", "signal"] } diff --git a/brush-shell/Cargo.toml b/brush-shell/Cargo.toml index d5b93fd0..c2ad0c96 100644 --- a/brush-shell/Cargo.toml +++ b/brush-shell/Cargo.toml @@ -37,7 +37,7 @@ tracing = "0.1.40" tracing-subscriber = "0.3.18" [target.'cfg(not(any(windows, unix)))'.dependencies] -tokio = { version = "1.37.0", features = ["rt", "sync"] } +tokio = { version = "1.39.2", features = ["rt", "sync"] } [target.'cfg(any(windows, unix))'.dependencies] tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "sync"] } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index e503e400..a0ac9cd2 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -20,7 +20,7 @@ anyhow = "1.0.86" assert_cmd = "2.0.15" lazy_static = "1.5.0" libfuzzer-sys = "0.4" -tokio = { version = "1.37.0", features = ["rt"] } +tokio = { version = "1.39.2", features = ["rt"] } [dependencies.brush-core] path = "../brush-core"