diff --git a/Cargo.lock b/Cargo.lock index ee636483d..8bca75db3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2639,7 +2639,7 @@ checksum = "a3ca0618f511e7e6fca5b849ab782316e30be51d5b8f573d99c3c76b17699cc1" dependencies = [ "bincode", "csv", - "itertools", + "itertools 0.13.0", "kiddo", "rayon", "serde", @@ -2723,7 +2723,7 @@ name = "grex" version = "1.4.5" source = "git+https://github.com/pemistahl/grex?rev=cb71c10#cb71c10815e2216f4941f0b52154fb5d1fc0a01c" dependencies = [ - "itertools", + "itertools 0.13.0", "lazy_static", "ndarray", "petgraph", @@ -3284,6 +3284,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.14" @@ -3434,7 +3443,7 @@ dependencies = [ "fixed", "generator", "init_with", - "itertools", + "itertools 0.13.0", "log", "num-traits", "ordered-float 4.6.0", @@ -4241,7 +4250,7 @@ dependencies = [ "futures", "humantime", "hyper", - "itertools", + "itertools 0.13.0", "md-5", "parking_lot", "percent-encoding", @@ -5348,7 +5357,7 @@ dependencies = [ "human-panic", "indexmap", "indicatif", - "itertools", + "itertools 0.14.0", "itoa", "jaq-interpret", "jaq-parse", @@ -5680,7 +5689,7 @@ dependencies = [ "compact_str", "crossterm 0.28.1", "instability", - "itertools", + "itertools 0.13.0", "lru", "paste", "strum", @@ -5760,7 +5769,7 @@ dependencies = [ "ahash", "arc-swap", "combine", - "itertools", + "itertools 0.13.0", "itoa", "num-bigint", "percent-encoding", @@ -7311,7 +7320,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" dependencies = [ - "itertools", + "itertools 0.13.0", "unicode-segmentation", "unicode-width 0.1.14", ] diff --git a/Cargo.toml b/Cargo.toml index a5d20d79b..ea212046e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ hashbrown = { version = "0.15", optional = true } human-panic = "2" indexmap = "2.7" indicatif = "0.17" -itertools = "0.13" +itertools = "0.14" itoa = "1" jaq-interpret = "1.5.0" jaq-parse = "1.0.3"