diff --git a/memory-db/Cargo.toml b/memory-db/Cargo.toml index 839a575c..79a9d002 100644 --- a/memory-db/Cargo.toml +++ b/memory-db/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" heapsize = { version = "0.4", optional = true } parity-util-mem = { version = "0.2", default-features = false } hash-db = { path = "../hash-db", default-features = false, version = "0.15.2"} -hashbrown = { version = "0.6.0" } +hashbrown = { version = "0.6.3", 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 2d400d99..54879432 100644 --- a/trie-db/Cargo.toml +++ b/trie-db/Cargo.toml @@ -11,7 +11,7 @@ log = "0.4" rand = { version = "0.6", default-features = false } elastic-array = { version = "0.10", default-features = false } hash-db = { path = "../hash-db", default-features = false, version = "0.15.2"} -hashbrown = { version = "0.6" } +hashbrown = { version = "0.6.3", default-features = false } [dev-dependencies] env_logger = "0.6"