You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by dh...@apache.org on 2023/06/06 18:24:13 UTC

[arrow-rs] branch master updated: Update hashbrown requirement from 0.13 to 0.14 (#4373)

This is an automated email from the ASF dual-hosted git repository.

dheres pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c002e20f Update hashbrown requirement from 0.13 to 0.14 (#4373)
0c002e20f is described below

commit 0c002e20f66c3ab53b883f3b7fb1a72a2e903a73
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Jun 6 20:24:07 2023 +0200

    Update hashbrown requirement from 0.13 to 0.14 (#4373)
    
    Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version.
    - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.13.1...v0.14.0)
    
    ---
    updated-dependencies:
    - dependency-name: hashbrown
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
---
 arrow-array/Cargo.toml | 2 +-
 arrow-row/Cargo.toml   | 2 +-
 parquet/Cargo.toml     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arrow-array/Cargo.toml b/arrow-array/Cargo.toml
index 634a0aa64..f2703bb6f 100644
--- a/arrow-array/Cargo.toml
+++ b/arrow-array/Cargo.toml
@@ -48,7 +48,7 @@ chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
 chrono-tz = { version = "0.8", optional = true }
 num = { version = "0.4", default-features = false, features = ["std"] }
 half = { version = "2.1", default-features = false, features = ["num-traits"] }
-hashbrown = { version = "0.13", default-features = false }
+hashbrown = { version = "0.14", default-features = false }
 packed_simd = { version = "0.3", default-features = false, optional = true, package = "packed_simd_2" }
 
 [features]
diff --git a/arrow-row/Cargo.toml b/arrow-row/Cargo.toml
index 8f5de1177..dcf624f8b 100644
--- a/arrow-row/Cargo.toml
+++ b/arrow-row/Cargo.toml
@@ -46,7 +46,7 @@ arrow-data = { workspace = true }
 arrow-schema = { workspace = true }
 
 half = { version = "2.1", default-features = false }
-hashbrown = { version = "0.13", default-features = false }
+hashbrown = { version = "0.14", default-features = false }
 
 [dev-dependencies]
 arrow-cast = { workspace = true }
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index adcbe82a7..52b0f0497 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -63,7 +63,7 @@ serde_json = { version = "1.0", default-features = false, features = ["std"], op
 seq-macro = { version = "0.3", default-features = false }
 futures = { version = "0.3", default-features = false, features = ["std"], optional = true }
 tokio = { version = "1.0", optional = true, default-features = false, features = ["macros", "rt", "io-util"] }
-hashbrown = { version = "0.13", default-features = false }
+hashbrown = { version = "0.14", default-features = false }
 twox-hash = { version = "1.6", default-features = false }
 paste = { version = "1.0" }