You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/11/10 19:34:04 UTC

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

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

tustvold 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 1cb9a4414 Update hashbrown requirement from 0.12 to 0.13 (#3081)
1cb9a4414 is described below

commit 1cb9a4414f521fa8ab7b2e535c9669190448541b
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Fri Nov 11 08:33:59 2022 +1300

    Update hashbrown requirement from 0.12 to 0.13 (#3081)
    
    Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version.
    - [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.12.0...v0.13.1)
    
    ---
    updated-dependencies:
    - dependency-name: hashbrown
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
---
 arrow-array/Cargo.toml | 2 +-
 arrow/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 186e88ff1..1e94ca64d 100644
--- a/arrow-array/Cargo.toml
+++ b/arrow-array/Cargo.toml
@@ -52,7 +52,7 @@ chrono = { version = "0.4", 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.12", default-features = false }
+hashbrown = { version = "0.13", default-features = false }
 
 [dev-dependencies]
 rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml
index d5392673e..2e33014db 100644
--- a/arrow/Cargo.toml
+++ b/arrow/Cargo.toml
@@ -56,7 +56,7 @@ arrow-select = { version = "26.0.0", path = "../arrow-select" }
 rand = { version = "0.8", default-features = false, features = ["std", "std_rng"], optional = true }
 num = { version = "0.4", default-features = false, features = ["std"] }
 half = { version = "2.1", default-features = false, features = ["num-traits"] }
-hashbrown = { version = "0.12", default-features = false }
+hashbrown = { version = "0.13", default-features = false }
 regex = { version = "1.5.6", default-features = false, features = ["std", "unicode"] }
 regex-syntax = { version = "0.6.27", default-features = false, features = ["unicode"] }
 packed_simd = { version = "0.3", default-features = false, optional = true, package = "packed_simd_2" }
diff --git a/parquet/Cargo.toml b/parquet/Cargo.toml
index 70320ba65..a414c1666 100644
--- a/parquet/Cargo.toml
+++ b/parquet/Cargo.toml
@@ -48,7 +48,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.12", default-features = false }
+hashbrown = { version = "0.13", default-features = false }
 
 [dev-dependencies]
 base64 = { version = "0.13", default-features = false, features = ["std"] }