Relax version requirements and use less features so that downstream consumers can set their own requirements

This commit is contained in:
David Palm 2018-08-20 15:08:36 +02:00
parent abe18ea03c
commit b0018c888c
3 changed files with 10 additions and 10 deletions

View File

@ -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"

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 = { 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

View File

@ -1,6 +1,6 @@
[package]
name = "triehash"
version = "0.2.0"
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
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" }