diff --git a/Cargo.lock b/Cargo.lock index 959af9e1b8..4b5403d9ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1974,6 +1974,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.10" @@ -2773,7 +2782,7 @@ name = "nu-cmd-lang" version = "0.88.2" dependencies = [ "fancy-regex 0.11.0", - "itertools 0.11.0", + "itertools 0.12.0", "nu-ansi-term", "nu-engine", "nu-parser", @@ -2824,7 +2833,7 @@ dependencies = [ "human-date-parser", "indexmap", "indicatif", - "itertools 0.11.0", + "itertools 0.12.0", "libc", "log", "lscolors", @@ -2973,7 +2982,7 @@ version = "0.88.2" dependencies = [ "bytesize", "chrono", - "itertools 0.11.0", + "itertools 0.12.0", "log", "nu-engine", "nu-path", diff --git a/crates/nu-cmd-lang/Cargo.toml b/crates/nu-cmd-lang/Cargo.toml index 9a540ca5dd..dce9387da1 100644 --- a/crates/nu-cmd-lang/Cargo.toml +++ b/crates/nu-cmd-lang/Cargo.toml @@ -19,7 +19,7 @@ nu-utils = { path = "../nu-utils", version = "0.88.2" } nu-ansi-term = "0.49.0" fancy-regex = "0.11" -itertools = "0.11" +itertools = "0.12" shadow-rs = { version = "0.25", default-features = false } [build-dependencies] diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index bd6b1d3932..c7331ee18f 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -50,7 +50,7 @@ htmlescape = "0.3" human-date-parser = "0.1.1" indexmap = "2.1" indicatif = "0.17" -itertools = "0.11" +itertools = "0.12" log = "0.4" lscolors = { version = "0.15", default-features = false, features = ["nu-ansi-term"] } md5 = { package = "md-5", version = "0.10" } diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 022449e52c..d1e4bf4232 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -19,7 +19,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.88.2" } bytesize = "1.3" chrono = { default-features = false, features = ['std'], version = "0.4" } -itertools = "0.11" +itertools = "0.12" log = "0.4" serde_json = "1.0"