You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ja...@apache.org on 2023/06/23 11:13:16 UTC

[arrow-datafusion] branch main updated: chore(deps): update itertools requirement from 0.10 to 0.11 (#6752)

This is an automated email from the ASF dual-hosted git repository.

jakevin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 01eb72af4c chore(deps): update itertools requirement from 0.10 to 0.11 (#6752)
01eb72af4c is described below

commit 01eb72af4ccdc911ba3cfe22e41f2d71389c5eb9
Author: jakevin <ja...@gmail.com>
AuthorDate: Fri Jun 23 19:13:08 2023 +0800

    chore(deps): update itertools requirement from 0.10 to 0.11 (#6752)
---
 datafusion-cli/Cargo.lock           | 21 +++++++++++++++------
 datafusion/core/Cargo.toml          |  2 +-
 datafusion/optimizer/Cargo.toml     |  2 +-
 datafusion/physical-expr/Cargo.toml |  2 +-
 datafusion/substrait/Cargo.toml     |  2 +-
 5 files changed, 19 insertions(+), 10 deletions(-)

diff --git a/datafusion-cli/Cargo.lock b/datafusion-cli/Cargo.lock
index b0219878b3..d4f9ee36e1 100644
--- a/datafusion-cli/Cargo.lock
+++ b/datafusion-cli/Cargo.lock
@@ -998,7 +998,7 @@ dependencies = [
  "glob",
  "hashbrown 0.14.0",
  "indexmap",
- "itertools",
+ "itertools 0.11.0",
  "lazy_static",
  "log",
  "num_cpus",
@@ -1092,7 +1092,7 @@ dependencies = [
  "datafusion-expr",
  "datafusion-physical-expr",
  "hashbrown 0.14.0",
- "itertools",
+ "itertools 0.11.0",
  "log",
  "regex-syntax",
 ]
@@ -1115,7 +1115,7 @@ dependencies = [
  "half",
  "hashbrown 0.14.0",
  "indexmap",
- "itertools",
+ "itertools 0.11.0",
  "lazy_static",
  "libc",
  "md-5",
@@ -1716,6 +1716,15 @@ dependencies = [
  "either",
 ]
 
+[[package]]
+name = "itertools"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
+dependencies = [
+ "either",
+]
+
 [[package]]
 name = "itoa"
 version = "1.0.6"
@@ -2056,7 +2065,7 @@ dependencies = [
  "futures",
  "humantime",
  "hyper",
- "itertools",
+ "itertools 0.10.5",
  "parking_lot",
  "percent-encoding",
  "quick-xml",
@@ -3113,9 +3122,9 @@ dependencies = [
 
 [[package]]
 name = "tracing-attributes"
-version = "0.1.25"
+version = "0.1.26"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8803eee176538f94ae9a14b55b2804eb7e1441f8210b1c31290b3bccdccff73b"
+checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
 dependencies = [
  "proc-macro2",
  "quote",
diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml
index c0fe97f4a3..483e98ea99 100644
--- a/datafusion/core/Cargo.toml
+++ b/datafusion/core/Cargo.toml
@@ -73,7 +73,7 @@ futures = "0.3"
 glob = "0.3.0"
 hashbrown = { version = "0.14", features = ["raw"] }
 indexmap = "1.9.2"
-itertools = "0.10"
+itertools = "0.11"
 lazy_static = { version = "^1.4.0" }
 log = "^0.4"
 num-traits = { version = "0.2", optional = true }
diff --git a/datafusion/optimizer/Cargo.toml b/datafusion/optimizer/Cargo.toml
index 329363ba0b..72191b9049 100644
--- a/datafusion/optimizer/Cargo.toml
+++ b/datafusion/optimizer/Cargo.toml
@@ -47,7 +47,7 @@ datafusion-common = { path = "../common", version = "26.0.0" }
 datafusion-expr = { path = "../expr", version = "26.0.0" }
 datafusion-physical-expr = { path = "../physical-expr", version = "26.0.0", default-features = false }
 hashbrown = { version = "0.14", features = ["raw"] }
-itertools = "0.10"
+itertools = "0.11"
 log = "^0.4"
 regex-syntax = "0.7.1"
 
diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml
index b851c00edc..db8c1408db 100644
--- a/datafusion/physical-expr/Cargo.toml
+++ b/datafusion/physical-expr/Cargo.toml
@@ -56,7 +56,7 @@ datafusion-row = { path = "../row", version = "26.0.0" }
 half = { version = "2.1", default-features = false }
 hashbrown = { version = "0.14", features = ["raw"] }
 indexmap = "1.9.2"
-itertools = { version = "0.10", features = ["use_std"] }
+itertools = { version = "0.11", features = ["use_std"] }
 lazy_static = { version = "^1.4.0" }
 libc = "0.2.140"
 md-5 = { version = "^0.10.0", optional = true }
diff --git a/datafusion/substrait/Cargo.toml b/datafusion/substrait/Cargo.toml
index bfa9b26407..965cbf7344 100644
--- a/datafusion/substrait/Cargo.toml
+++ b/datafusion/substrait/Cargo.toml
@@ -31,7 +31,7 @@ rust-version = { workspace = true }
 async-recursion = "1.0"
 chrono = { version = "0.4.23", default-features = false }
 datafusion = { version = "26.0.0", path = "../core" }
-itertools = "0.10.5"
+itertools = "0.11"
 object_store = "0.6.1"
 prost = "0.11"
 prost-types = "0.11"