From a97076f3a5698e4831f2df3da79da1a7cfbb2dde Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 23:05:09 +0000 Subject: [PATCH] Update itertools requirement from 0.12 to 0.14 Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.0...v0.14.0) --- updated-dependencies: - dependency-name: itertools dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- datafusion/functions-array/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f61ed7e58fe3..103895504572 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,7 @@ futures = "0.3" half = { version = "2.2.1", default-features = false } hashbrown = { version = "0.14.5", features = ["raw"] } indexmap = "2.0.0" -itertools = "0.12" +itertools = "0.14" log = "^0.4" num_cpus = "1.13.0" object_store = { version = "0.10.1", default-features = false } diff --git a/datafusion/functions-array/Cargo.toml b/datafusion/functions-array/Cargo.toml index 73c5b9114a2c..ababa21391e6 100644 --- a/datafusion/functions-array/Cargo.toml +++ b/datafusion/functions-array/Cargo.toml @@ -50,7 +50,7 @@ datafusion-execution = { workspace = true } datafusion-expr = { workspace = true } datafusion-functions = { workspace = true } datafusion-functions-aggregate = { workspace = true } -itertools = { version = "0.12", features = ["use_std"] } +itertools = { version = "0.14", features = ["use_std"] } log = { workspace = true } paste = "1.0.14"