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"] }