Change trie deps from github to release (#1520)

This commit is contained in:
Benjamin Kampmann
2019-01-22 13:39:16 +01:00
committed by Bastian Köcher
parent 58cd6530be
commit 8f38593def
8 changed files with 62 additions and 62 deletions
+7 -7
View File
@@ -12,16 +12,16 @@ harness = false
[dependencies]
parity-codec = { version = "2.2" }
hash-db = { git = "https://github.com/paritytech/trie", default-features = false }
trie-db = { git = "https://github.com/paritytech/trie", optional = true }
trie-root = { git = "https://github.com/paritytech/trie", default-features = false }
memory-db = { git = "https://github.com/paritytech/trie", optional = true }
hash-db = { version = "0.9", default-features = false }
trie-db = { version = "0.9", optional = true }
trie-root = { version = "0.9", default-features = false }
memory-db = { version = "0.9", optional = true }
[dev-dependencies]
substrate-primitives = { path = "../primitives" }
trie-bench = { git = "https://github.com/paritytech/trie" }
trie-standardmap = { git = "https://github.com/paritytech/trie" }
keccak-hasher = { git = "https://github.com/paritytech/trie" }
trie-bench = { version = "0.9" }
trie-standardmap = { version = "0.9" }
keccak-hasher = { version = "0.2" }
criterion = "0.1.2"
hex-literal = "0.1.0"