diff --git a/Cargo.lock b/Cargo.lock index e744ef723c..7cb9b58e2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -674,7 +674,7 @@ dependencies = [ "ciborium", "clap", "criterion-plot", - "itertools", + "itertools 0.10.5", "lazy_static", "num-traits", "oorandom", @@ -695,7 +695,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" dependencies = [ "cast", - "itertools", + "itertools 0.10.5", ] [[package]] @@ -1241,6 +1241,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.6" @@ -2038,7 +2047,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe" dependencies = [ "anyhow", - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.109", @@ -2051,7 +2060,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b" dependencies = [ "anyhow", - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.109", @@ -2240,7 +2249,7 @@ dependencies = [ "hashbrown 0.14.3", "hex", "indexmap", - "itertools", + "itertools 0.12.0", "json-deserializer", "lexical-core", "lz4", diff --git a/Cargo.toml b/Cargo.toml index 43636fce48..42a78625e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ zstd = { version = "0.12", optional = true } rand = { version = "0.8", optional = true } -itertools = { version = "^0.10", optional = true } +itertools = { version = "0.12", optional = true } base64 = { version = "0.21.0", optional = true }