Revert "Remove more annoying `version` keys to local crates"

This reverts commit 9bf10de654.
This commit is contained in:
David Palm 2018-09-27 16:48:46 +01:00
parent 9bf10de654
commit ee51ead594
3 changed files with 7 additions and 7 deletions

View File

@ -8,4 +8,4 @@ license = "GPL-3.0"
[dependencies]
elastic-array = "0.10"
parity-bytes = { path = "../parity-bytes" }
parity-bytes = { version = "0.1", path = "../parity-bytes" }

View File

@ -8,6 +8,6 @@ license = "GPL-3.0"
[dependencies]
ethereum-types = "0.4"
keccak-hash = { path = "../keccak-hash" }
parity-bytes = { path = "../parity-bytes" }
rlp = { path = "../rlp" }
keccak-hash = { version = "0.1", path = "../keccak-hash" }
parity-bytes = { version = "0.1", path = "../parity-bytes" }
rlp = { version = "0.3.0", path = "../rlp" }

View File

@ -8,11 +8,11 @@ license = "GPL-3.0"
[dependencies]
hashdb = { path = "../hashdb", default-features = false }
rlp = { path = "../rlp", default-features = false }
rlp = { version = "0.3", path = "../rlp", default-features = false }
[dev-dependencies]
trie-standardmap = { path = "../trie-standardmap" }
keccak-hasher = { path = "../test-support/keccak-hasher" }
trie-standardmap = { version = "0.1", path = "../trie-standardmap" }
keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" }
tiny-keccak = "1.4.2"
ethereum-types = "0.4"