diff --git a/patricia_trie/Cargo.toml b/patricia_trie/Cargo.toml index a6f0706..be80eae 100644 --- a/patricia_trie/Cargo.toml +++ b/patricia_trie/Cargo.toml @@ -16,10 +16,10 @@ parity-bytes = { version = "0.1.0", path = "../parity-bytes" } [dev-dependencies] env_logger = "0.5" ethereum-types = "0.3" -keccak-hash = { path = "../keccak-hash" } +keccak-hash = { version = "0.1", path = "../keccak-hash" } memorydb = { version = "0.2", path = "../memorydb" } rlp = { version = "0.2.1", path = "../rlp" } -trie-standardmap = { path = "../trie-standardmap" } +trie-standardmap = { version = "0.1", path = "../trie-standardmap" } triehash = { version = "0.2", path = "../triehash" } # REVIEW: what's a better way to deal with this? The tests here in diff --git a/trie-standardmap/Cargo.toml b/trie-standardmap/Cargo.toml index a240d41..76727f0 100644 --- a/trie-standardmap/Cargo.toml +++ b/trie-standardmap/Cargo.toml @@ -6,6 +6,6 @@ description = "Standard test map for profiling tries" [dependencies] ethereum-types = "0.3" -keccak-hash = { path = "../keccak-hash" } +keccak-hash = { version = "0.1", path = "../keccak-hash" } parity-bytes = { path = "../parity-bytes" } rlp = { path = "../rlp" } diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 47a3c19..7fb1e49 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -3,14 +3,14 @@ name = "triehash" version = "0.2.0" authors = ["Parity Technologies "] description = "in memory patricia trie operations" +repository = "https://github.com/paritytech/parity-common" license = "GPL-3.0" [dependencies] elastic-array = "0.10" ethereum-types = "0.3" -hashdb = { path = "../hashdb" } -rlp = { path = "../rlp" } +hashdb = { version = "0.2", "path = "../hashdb" } +rlp = { version = "0.2.1", path = "../rlp" } [dev-dependencies] -trie-standardmap = { path = "../trie-standardmap" } -keccak-hasher = { path = "../test-support/keccak-hasher" } \ No newline at end of file +trie-standardmap = { version = "0.1", path = "../trie-standardmap" }