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
+3 -3
View File
@@ -8,9 +8,9 @@ edition = "2018"
[dependencies]
log = "0.4"
parking_lot = "0.9.0"
hash-db = "0.15.0"
trie-db = "0.15.0"
trie-root = "0.15.0"
hash-db = "0.15.2"
trie-db = "0.15.2"
trie-root = "0.15.2"
trie = { package = "substrate-trie", path = "../trie" }
primitives = { package = "substrate-primitives", path = "../primitives" }
panic-handler = { package = "substrate-panic-handler", path = "../panic-handler" }