Add versions back

This commit is contained in:
David Palm 2018-08-20 15:43:41 +02:00
parent b0018c888c
commit 6969abd122
3 changed files with 11 additions and 11 deletions

View File

@ -8,12 +8,12 @@ license = "GPL-3.0"
[dependencies]
elastic-array = "0.10"
heapsize = "0.4"
hashdb = { path = "../hashdb" }
plain_hasher = { path = "../plain_hasher", default-features = false }
rlp = { path = "../rlp", default-features = false }
hashdb = { version = "0.2", path = "../hashdb" }
plain_hasher = { version = "0.2", path = "../plain_hasher", default-features = false }
rlp = { version = "0.2", path = "../rlp", default-features = false }
[dev-dependencies]
tiny-keccak = "1.4.2"
ethereum-types = "0.3"
keccak-hasher = { path = "../test-support/keccak-hasher" }
keccak-hash = { path = "../keccak-hash" }
keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" }
keccak-hash = { version = "0.1", path = "../keccak-hash" }

View File

@ -16,10 +16,10 @@ parity-bytes = { version = "0.1", path = "../parity-bytes" }
env_logger = "0.5"
ethereum-types = "0.3"
keccak-hash = { version = "0.1", path = "../keccak-hash" }
memorydb = { path = "../memorydb", default-features = false }
rlp = { path = "../rlp", default-features = false }
trie-standardmap = { path = "../trie-standardmap", default-features = false }
triehash = { path = "../triehash", default-features = false }
memorydb = { version = "0.2", path = "../memorydb", default-features = false }
rlp = { version = "0.2", path = "../rlp", default-features = false }
trie-standardmap = { version = "0.1", path = "../trie-standardmap", default-features = false }
triehash = { version = "0.2", path = "../triehash", default-features = false }
# REVIEW: what's a better way to deal with this? The tests here in
# `patricia_trie` use `keccak-hasher` and `patricia-trie-ethereum` to

View File

@ -8,8 +8,8 @@ license = "GPL-3.0"
[dependencies]
elastic-array = "0.10"
hashdb = { path = "../hashdb", default-features = false }
rlp = { path = "../rlp", default-features = false }
hashdb = { version = "0.2", path = "../hashdb", default-features = false }
rlp = { version = "0.2", path = "../rlp", default-features = false }
[dev-dependencies]
trie-standardmap = { version = "0.1", path = "../trie-standardmap" }