diff --git a/memorydb/Cargo.toml b/memorydb/Cargo.toml index 5c2adaa..32ca7e4 100644 --- a/memorydb/Cargo.toml +++ b/memorydb/Cargo.toml @@ -8,9 +8,9 @@ license = "GPL-3.0" [dependencies] elastic-array = "0.10" heapsize = "0.4" -hashdb = { version = "0.2.0", path = "../hashdb" } -plain_hasher = { path = "../plain_hasher" } -rlp = { version = "0.2.1", path = "../rlp" } +hashdb = { path = "../hashdb" } +plain_hasher = { path = "../plain_hasher", default-features = false } +rlp = { path = "../rlp", default-features = false } [dev-dependencies] tiny-keccak = "1.4.2" diff --git a/patricia_trie/Cargo.toml b/patricia_trie/Cargo.toml index 2d08e8b..ccd8b8a 100644 --- a/patricia_trie/Cargo.toml +++ b/patricia_trie/Cargo.toml @@ -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 = { version = "0.2", path = "../memorydb" } -rlp = { version = "0.2.1", path = "../rlp" } -trie-standardmap = { version = "0.1", path = "../trie-standardmap" } -triehash = { version = "0.2", path = "../triehash" } +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 } # REVIEW: what's a better way to deal with this? The tests here in # `patricia_trie` use `keccak-hasher` and `patricia-trie-ethereum` to diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 8a617b8..10e33d5 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "triehash" -version = "0.2.0" +version = "0.2.1" authors = ["Parity Technologies "] description = "in memory patricia trie operations" repository = "https://github.com/paritytech/parity-common" @@ -8,8 +8,8 @@ license = "GPL-3.0" [dependencies] elastic-array = "0.10" -hashdb = { version = "0.2", path = "../hashdb", default_features = false } -rlp = { version = "0.2", path = "../rlp", default_features = false } +hashdb = { path = "../hashdb", default-features = false } +rlp = { path = "../rlp", default-features = false } [dev-dependencies] trie-standardmap = { version = "0.1", path = "../trie-standardmap" }