diff --git a/native/Cargo.lock b/native/Cargo.lock index 58d96a8ff7..47b9c96a7f 100644 --- a/native/Cargo.lock +++ b/native/Cargo.lock @@ -2008,7 +2008,7 @@ dependencies = [ "hex", "iceberg", "iceberg-storage-opendal", - "itertools 0.14.0", + "itertools 0.15.0", "jni 0.22.4", "lazy_static", "log", @@ -2119,7 +2119,7 @@ dependencies = [ "datafusion-comet-jni-bridge", "datafusion-comet-spark-expr", "futures", - "itertools 0.14.0", + "itertools 0.15.0", "jni 0.21.1", "log", "lz4_flex", @@ -3871,6 +3871,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.18" @@ -5309,7 +5318,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042" dependencies = [ "heck", - "itertools 0.14.0", + "itertools 0.13.0", "log", "multimap", "petgraph", @@ -5328,7 +5337,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf" dependencies = [ "anyhow", - "itertools 0.14.0", + "itertools 0.13.0", "proc-macro2", "quote", "syn 2.0.117", diff --git a/native/core/Cargo.toml b/native/core/Cargo.toml index d9c45a08a3..5cb970c762 100644 --- a/native/core/Cargo.toml +++ b/native/core/Cargo.toml @@ -51,7 +51,7 @@ rand = { workspace = true } num = { workspace = true } bytes = { workspace = true } tempfile = "3.26.0" -itertools = "0.14.0" +itertools = "0.15.0" paste = "1.0.14" datafusion = { workspace = true, features = ["parquet_encryption", "sql"] } datafusion-physical-expr-adapter = { workspace = true } diff --git a/native/shuffle/Cargo.toml b/native/shuffle/Cargo.toml index 071ec699f5..4d62181089 100644 --- a/native/shuffle/Cargo.toml +++ b/native/shuffle/Cargo.toml @@ -40,7 +40,7 @@ datafusion-comet-common = { workspace = true } datafusion-comet-jni-bridge = { workspace = true } datafusion-comet-spark-expr = { workspace = true } futures = { workspace = true } -itertools = "0.14.0" +itertools = "0.15.0" jni = "0.21" log = "0.4" lz4_flex = { version = "0.13.1", default-features = false, features = ["frame"] } @@ -54,7 +54,7 @@ zstd = "0.13.3" [dev-dependencies] criterion = { version = "0.7", features = ["async", "async_tokio", "async_std"] } datafusion = { workspace = true, features = ["parquet_encryption", "sql"] } -itertools = "0.14.0" +itertools = "0.15.0" tempfile = "3.26.0" tokio = { version = "1", features = ["macros", "rt-multi-thread"] }