From 11a881dd8150640bd5897419071ccd0a2174a746 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Mar 2021 08:11:23 +0000 Subject: [PATCH] Update hashbrown requirement from 0.9.1 to 0.11.0 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.9.1...v0.11.0) Signed-off-by: dependabot[bot] --- memory-db/Cargo.toml | 2 +- trie-db/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/memory-db/Cargo.toml b/memory-db/Cargo.toml index 99b44901..30d27298 100644 --- a/memory-db/Cargo.toml +++ b/memory-db/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] parity-util-mem = { version = "0.9.0", default-features = false, features = ["hashbrown"] } hash-db = { path = "../hash-db", default-features = false, version = "0.15.2"} -hashbrown = { version = "0.9.1", default-features = false, features = [ "ahash" ] } +hashbrown = { version = "0.11.0", default-features = false, features = [ "ahash" ] } [dev-dependencies] keccak-hasher = { path = "../test-support/keccak-hasher", version = "0.15.2"} diff --git a/trie-db/Cargo.toml b/trie-db/Cargo.toml index 64d8803e..6bb3f9f7 100644 --- a/trie-db/Cargo.toml +++ b/trie-db/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" log = "0.4" smallvec = "1.0.0" hash-db = { path = "../hash-db", default-features = false, version = "0.15.2"} -hashbrown = { version = "0.9.1", default-features = false, features = ["ahash"] } +hashbrown = { version = "0.11.0", default-features = false, features = ["ahash"] } rustc-hex = { version = "2.1.0", default-features = false, optional = true } [features]