From 8f86124268b3a2158547d6c01f5f50eee2b84fd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Nov 2022 23:18:36 +0000 Subject: [PATCH] Update hashbrown requirement from 0.12 to 0.13 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.12.0...v0.13.1) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- datafusion/core/Cargo.toml | 2 +- datafusion/optimizer/Cargo.toml | 2 +- datafusion/physical-expr/Cargo.toml | 2 +- datafusion/sql/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index f5f4350b072a..61168e691993 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -69,7 +69,7 @@ datafusion-row = { path = "../row", version = "12.0.0" } datafusion-sql = { path = "../sql", version = "12.0.0" } futures = "0.3" glob = "0.3.0" -hashbrown = { version = "0.12", features = ["raw"] } +hashbrown = { version = "0.13", features = ["raw"] } itertools = "0.10" lazy_static = { version = "^1.4.0" } log = "^0.4" diff --git a/datafusion/optimizer/Cargo.toml b/datafusion/optimizer/Cargo.toml index 409521088bf6..5387b0cfeae3 100644 --- a/datafusion/optimizer/Cargo.toml +++ b/datafusion/optimizer/Cargo.toml @@ -43,7 +43,7 @@ chrono = { version = "0.4", default-features = false } datafusion-common = { path = "../common", version = "12.0.0" } datafusion-expr = { path = "../expr", version = "12.0.0" } datafusion-physical-expr = { path = "../physical-expr", version = "12.0.0" } -hashbrown = { version = "0.12", features = ["raw"] } +hashbrown = { version = "0.13", features = ["raw"] } log = "^0.4" [dev-dependencies] diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml index ba618acb64bf..574d976bfcd1 100644 --- a/datafusion/physical-expr/Cargo.toml +++ b/datafusion/physical-expr/Cargo.toml @@ -47,7 +47,7 @@ chrono = { version = "0.4", default-features = false } datafusion-common = { path = "../common", version = "12.0.0" } datafusion-expr = { path = "../expr", version = "12.0.0" } datafusion-row = { path = "../row", version = "12.0.0" } -hashbrown = { version = "0.12", features = ["raw"] } +hashbrown = { version = "0.13", features = ["raw"] } lazy_static = { version = "^1.4.0" } md-5 = { version = "^0.10.0", optional = true } ordered-float = "3.0" diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml index b2da631827a5..72412a5343d8 100644 --- a/datafusion/sql/Cargo.toml +++ b/datafusion/sql/Cargo.toml @@ -41,6 +41,6 @@ ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] arrow = { version = "23.0.0", features = ["prettyprint"] } datafusion-common = { path = "../common", version = "12.0.0" } datafusion-expr = { path = "../expr", version = "12.0.0" } -hashbrown = "0.12" +hashbrown = "0.13" sqlparser = "0.23" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] }