Update trie crate to hashbrown usage. (#3440)

* Update trie crate to non hashmap_core one.

* bump runtime impl.
This commit is contained in:
cheme
2019-08-19 15:59:37 +02:00
committed by Bastian Köcher
parent 6fb721e861
commit 95abffc8e4
12 changed files with 111 additions and 72 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ byteorder = { version = "1.3.1", default-features = false }
primitive-types = { version = "0.5.0", default-features = false, features = ["codec"] }
impl-serde = { version = "0.1", optional = true }
wasmi = { version = "0.5.0", optional = true }
hash-db = { version = "0.15.0", default-features = false }
hash256-std-hasher = { version = "0.15.0", default-features = false }
hash-db = { version = "0.15.2", default-features = false }
hash256-std-hasher = { version = "0.15.2", default-features = false }
ed25519-dalek = { version = "1.0.0-pre.1", optional = true }
base58 = { version = "0.1", optional = true }
blake2-rfc = { version = "0.2.18", optional = true }