diff --git a/Cargo.lock b/Cargo.lock old mode 100755 new mode 100644 index b6bc5d8ee..59760e753 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,7 +140,7 @@ dependencies = [ "chrono", "chrono-tz", "half", - "hashbrown 0.14.0", + "hashbrown", "num", "packed_simd_2", ] @@ -257,7 +257,7 @@ dependencies = [ "arrow-data", "arrow-schema", "half", - "hashbrown 0.14.0", + "hashbrown", ] [[package]] @@ -731,7 +731,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", - "hashbrown 0.14.0", + "hashbrown", "lock_api", "once_cell", "parking_lot_core", @@ -762,7 +762,7 @@ dependencies = [ "futures", "glob", "half", - "hashbrown 0.14.0", + "hashbrown", "indexmap", "itertools 0.11.0", "lazy_static", @@ -818,7 +818,7 @@ dependencies = [ "datafusion-common", "datafusion-expr", "futures", - "hashbrown 0.14.0", + "hashbrown", "log", "object_store", "parking_lot", @@ -918,7 +918,7 @@ dependencies = [ "datafusion-ext-exprs", "derivative", "futures", - "hashbrown 0.13.2", + "hashbrown", "itertools 0.10.5", "jni", "log", @@ -946,7 +946,7 @@ dependencies = [ "datafusion-common", "datafusion-expr", "datafusion-physical-expr", - "hashbrown 0.14.0", + "hashbrown", "itertools 0.11.0", "log", "regex-syntax", @@ -969,7 +969,7 @@ dependencies = [ "datafusion-common", "datafusion-expr", "half", - "hashbrown 0.14.0", + "hashbrown", "hex", "indexmap", "itertools 0.11.0", @@ -1255,15 +1255,6 @@ dependencies = [ "byteorder", ] -[[package]] -name = "hashbrown" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" -dependencies = [ - "ahash", -] - [[package]] name = "hashbrown" version = "0.14.0" @@ -1361,7 +1352,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown", ] [[package]] @@ -1832,7 +1823,7 @@ dependencies = [ "chrono", "flate2", "futures", - "hashbrown 0.14.0", + "hashbrown", "lz4", "num", "num-bigint", diff --git a/native-engine/datafusion-ext-plans/Cargo.toml b/native-engine/datafusion-ext-plans/Cargo.toml index 009d6e91a..83185b7aa 100644 --- a/native-engine/datafusion-ext-plans/Cargo.toml +++ b/native-engine/datafusion-ext-plans/Cargo.toml @@ -20,7 +20,7 @@ datafusion-ext-commons = { workspace = true } datafusion-ext-exprs = { workspace = true } derivative = "2.2.0" futures = "0.3" -hashbrown = "0.13.1" +hashbrown = "0.14.0" itertools = "0.10.3" jni = "0.20.0" log = "0.4.14"