diff --git a/Cargo.lock b/Cargo.lock index 270ca370..906c43b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1926,18 +1926,18 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "serde" -version = "1.0.206" +version = "1.0.208" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284" +checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.206" +version = "1.0.208" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97" +checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf" dependencies = [ "proc-macro2", "quote", @@ -2185,9 +2185,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index 6c91e332..75ee09a2 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.39.2", features = [ +tokio = { version = "1.39.3", features = [ "io-util", "macros", "rt", @@ -41,7 +41,7 @@ tokio = { version = "1.39.2", features = [ [target.'cfg(any(windows, unix))'.dependencies] hostname = "0.4.0" os_pipe = { version = "1.2.1", features = ["io_safety"] } -tokio = { version = "1.39.2", features = [ +tokio = { version = "1.39.3", features = [ "io-util", "macros", "process", diff --git a/brush-interactive/Cargo.toml b/brush-interactive/Cargo.toml index ce45890a..128db5ea 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.39.2", features = ["macros", "signal"] } +tokio = { version = "1.39.3", features = ["macros", "signal"] } diff --git a/brush-shell/Cargo.toml b/brush-shell/Cargo.toml index 85c46735..07983158 100644 --- a/brush-shell/Cargo.toml +++ b/brush-shell/Cargo.toml @@ -37,10 +37,10 @@ tracing = "0.1.40" tracing-subscriber = "0.3.18" [target.'cfg(not(any(windows, unix)))'.dependencies] -tokio = { version = "1.39.2", features = ["rt", "sync"] } +tokio = { version = "1.39.3", features = ["rt", "sync"] } [target.'cfg(any(windows, unix))'.dependencies] -tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "sync"] } +tokio = { version = "1.39.3", features = ["rt", "rt-multi-thread", "sync"] } [dev-dependencies] anyhow = "1.0.86" @@ -56,6 +56,6 @@ indent = "0.1.1" junit-report = "0.8.3" pathdiff = "0.2.1" regex = "1.10.6" -serde = { version = "1.0.206", features = ["derive"] } +serde = { version = "1.0.208", features = ["derive"] } serde_yaml = "0.9.34" strip-ansi-escapes = "0.2.0" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index a0ac9cd2..73971e6b 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.39.2", features = ["rt"] } +tokio = { version = "1.39.3", features = ["rt"] } [dependencies.brush-core] path = "../brush-core"