From 32bdb195ad5f833cb08f78a9f0be25e2c728f73e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 11:23:52 +0000 Subject: [PATCH] Update hashbrown requirement from 0.13.2 to 0.14.0 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.2...v0.14.0) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- test-support/reference-trie/Cargo.toml | 2 +- trie-db/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test-support/reference-trie/Cargo.toml b/test-support/reference-trie/Cargo.toml index 938a384c..9881bbf6 100644 --- a/test-support/reference-trie/Cargo.toml +++ b/test-support/reference-trie/Cargo.toml @@ -13,7 +13,7 @@ keccak-hasher = { path = "../keccak-hasher", version = "0.16.0" } trie-db = { path = "../../trie-db", default-features = false, version = "0.28.0" } trie-root = { path = "../../trie-root", default-features = false, version = "0.18.0" } parity-scale-codec = { version = "3.0.0", features = ["derive"] } -hashbrown = { version = "0.13.2", default-features = false, features = ["ahash"] } +hashbrown = { version = "0.14.0", default-features = false, features = ["ahash"] } paste = "1.0.12" [dev-dependencies] diff --git a/trie-db/Cargo.toml b/trie-db/Cargo.toml index 1fd496ad..18f9a971 100644 --- a/trie-db/Cargo.toml +++ b/trie-db/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" log = "0.4" smallvec = { version = "1.0.0", features = ["union", "const_new"] } hash-db = { path = "../hash-db", default-features = false, version = "0.16.0"} -hashbrown = { version = "0.13.2", default-features = false, features = ["ahash"] } +hashbrown = { version = "0.14.0", default-features = false, features = ["ahash"] } rustc-hex = { version = "2.1.0", default-features = false, optional = true } [features]