From 70e1c5a6f2e3a8c52c597996d142d8dc4f8b4f16 Mon Sep 17 00:00:00 2001 From: Matthijs Brobbel Date: Thu, 11 Jul 2024 02:16:43 +0200 Subject: [PATCH] Fix `hashbrown` version in `arrow-array`, remove from `arrow-row` (#6035) --- arrow-array/Cargo.toml | 2 +- arrow-row/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/arrow-array/Cargo.toml b/arrow-array/Cargo.toml index bf6e27f6b23..7c989fe4dd4 100644 --- a/arrow-array/Cargo.toml +++ b/arrow-array/Cargo.toml @@ -48,7 +48,7 @@ chrono = { workspace = true } chrono-tz = { version = "0.9", optional = true } num = { version = "0.4.1", default-features = false, features = ["std"] } half = { version = "2.1", default-features = false, features = ["num-traits"] } -hashbrown = { version = "0.14", default-features = false } +hashbrown = { version = "0.14.2", default-features = false } [features] ffi = ["arrow-schema/ffi", "arrow-data/ffi"] diff --git a/arrow-row/Cargo.toml b/arrow-row/Cargo.toml index dcf624f8b7d..3754afb4dbc 100644 --- a/arrow-row/Cargo.toml +++ b/arrow-row/Cargo.toml @@ -46,7 +46,6 @@ arrow-data = { workspace = true } arrow-schema = { workspace = true } half = { version = "2.1", default-features = false } -hashbrown = { version = "0.14", default-features = false } [dev-dependencies] arrow-cast = { workspace = true }