diff --git a/Cargo.lock b/Cargo.lock index 58efbb58..65d0ad8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -195,9 +195,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "1b1244b10dcd56c92219da4e14caa97e312079e185f04ba3eea25061561dc0a0" dependencies = [ "proc-macro2", "quote", @@ -274,7 +274,7 @@ dependencies = [ "homedir", "hostname", "indexmap", - "itertools 0.13.0", + "itertools 0.14.0", "lazy_static", "nix 0.29.0", "os_pipe", @@ -1346,9 +1346,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] diff --git a/brush-core/Cargo.toml b/brush-core/Cargo.toml index eca6cb5f..330a4310 100644 --- a/brush-core/Cargo.toml +++ b/brush-core/Cargo.toml @@ -18,7 +18,7 @@ workspace = true [dependencies] async-recursion = "1.1.1" -async-trait = "0.1.83" +async-trait = "0.1.84" brush-parser = { version = "^0.2.11", path = "../brush-parser" } cached = "0.54.0" cfg-if = "1.0.0" @@ -27,7 +27,7 @@ clap = { version = "4.5.21", features = ["derive", "wrap_help"] } fancy-regex = "0.14.0" futures = "0.3.31" indexmap = "2.7.0" -itertools = "0.13.0" +itertools = "0.14.0" lazy_static = "1.5.0" rand = "0.8.5" thiserror = "2.0.7" diff --git a/brush-interactive/Cargo.toml b/brush-interactive/Cargo.toml index 76242f12..f6057eaa 100644 --- a/brush-interactive/Cargo.toml +++ b/brush-interactive/Cargo.toml @@ -24,7 +24,7 @@ reedline = ["dep:reedline", "dep:nu-ansi-term"] workspace = true [dependencies] -async-trait = "0.1.83" +async-trait = "0.1.84" brush-parser = { version = "^0.2.11", path = "../brush-parser" } brush-core = { version = "^0.2.13", path = "../brush-core" } crossterm = { version = "0.28.1", features = ["serde"], optional = true } diff --git a/brush-shell/Cargo.toml b/brush-shell/Cargo.toml index 77e99b4b..75da2f6f 100644 --- a/brush-shell/Cargo.toml +++ b/brush-shell/Cargo.toml @@ -39,7 +39,7 @@ reedline = ["brush-interactive/reedline"] workspace = true [dependencies] -async-trait = "0.1.83" +async-trait = "0.1.84" brush-parser = { version = "^0.2.11", path = "../brush-parser" } brush-core = { version = "^0.2.13", path = "../brush-core" } cfg-if = "1.0.0"