diff --git a/kvdb/Cargo.toml b/kvdb/Cargo.toml index 7c839ba..86c00c2 100644 --- a/kvdb/Cargo.toml +++ b/kvdb/Cargo.toml @@ -8,4 +8,4 @@ license = "GPL-3.0" [dependencies] elastic-array = "0.10" -parity-bytes = { version = "0.1", path = "../parity-bytes" } +parity-bytes = { path = "../parity-bytes" } diff --git a/trie-standardmap/Cargo.toml b/trie-standardmap/Cargo.toml index 6665835..6460273 100644 --- a/trie-standardmap/Cargo.toml +++ b/trie-standardmap/Cargo.toml @@ -8,6 +8,6 @@ license = "GPL-3.0" [dependencies] ethereum-types = "0.4" -keccak-hash = { version = "0.1", path = "../keccak-hash" } -parity-bytes = { version = "0.1", path = "../parity-bytes" } -rlp = { version = "0.3.0", path = "../rlp" } +keccak-hash = { path = "../keccak-hash" } +parity-bytes = { path = "../parity-bytes" } +rlp = { path = "../rlp" } diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 312f09a..06ac31b 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -8,11 +8,11 @@ license = "GPL-3.0" [dependencies] hashdb = { path = "../hashdb", default-features = false } -rlp = { version = "0.3", path = "../rlp", default-features = false } +rlp = { path = "../rlp", default-features = false } [dev-dependencies] -trie-standardmap = { version = "0.1", path = "../trie-standardmap" } -keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" } +trie-standardmap = { path = "../trie-standardmap" } +keccak-hasher = { path = "../test-support/keccak-hasher" } tiny-keccak = "1.4.2" ethereum-types = "0.4"