From a638a7fc2d30573fa1c95c5ac0b89bfd50ce2a82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 08:41:36 +0000 Subject: [PATCH] chore(deps): bump hashbrown from 0.16.1 to 0.17.0 Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.16.1 to 0.17.0. - [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.16.1...v0.17.0) --- updated-dependencies: - dependency-name: hashbrown dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 87c18826096c2..23bd3340cc7ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1914,7 +1914,7 @@ dependencies = [ "criterion", "foldhash 0.2.0", "half", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "hex", "indexmap 2.13.1", "insta", @@ -2312,7 +2312,7 @@ dependencies = [ "datafusion-functions-aggregate-common", "datafusion-macros", "datafusion-physical-expr-common", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "itertools 0.14.0", "itoa", "log", @@ -2406,7 +2406,7 @@ dependencies = [ "datafusion-functions-aggregate-common", "datafusion-physical-expr-common", "half", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "indexmap 2.13.1", "insta", "itertools 0.14.0", @@ -2440,7 +2440,7 @@ dependencies = [ "criterion", "datafusion-common", "datafusion-expr-common", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "indexmap 2.13.1", "itertools 0.14.0", "parking_lot", @@ -2490,7 +2490,7 @@ dependencies = [ "datafusion-physical-expr-common", "futures", "half", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "indexmap 2.13.1", "insta", "itertools 0.14.0", @@ -3329,6 +3329,17 @@ dependencies = [ "foldhash 0.2.0", ] +[[package]] +name = "hashbrown" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] + [[package]] name = "heck" version = "0.5.0" diff --git a/Cargo.toml b/Cargo.toml index 9ac070194161e..79009e74fd4f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -160,7 +160,7 @@ flate2 = "1.1.9" futures = "0.3" glob = "0.3.0" half = { version = "2.7.0", default-features = false } -hashbrown = { version = "0.16.1" } +hashbrown = { version = "0.17.0" } hex = { version = "0.4.3" } indexmap = "2.13.1" insta = { version = "1.47.2", features = ["glob", "filters"] }