Merge pull request #28 from paritytech/dp/chore/relax-version-reqs

Relax version requirements
This commit is contained in:
Marek Kotewicz 2018-08-22 16:03:25 +02:00 committed by GitHub
commit 3e7cdf9801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 12 deletions

View File

@ -8,12 +8,12 @@ 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 = { version = "0.2", path = "../hashdb" }
plain_hasher = { version = "0.2", path = "../plain_hasher", default-features = false }
rlp = { version = "0.2", path = "../rlp", default-features = false }
[dev-dependencies]
tiny-keccak = "1.4.2"
ethereum-types = "0.3"
keccak-hasher = { path = "../test-support/keccak-hasher" }
keccak-hash = { path = "../keccak-hash" }
keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" }
keccak-hash = { version = "0.1", path = "../keccak-hash" }

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 = { version = "0.2", path = "../memorydb", default-features = false }
rlp = { version = "0.2.1", path = "../rlp", default-features = false }
trie-standardmap = { version = "0.1", path = "../trie-standardmap", default-features = false }
triehash = { version = "0.2", path = "../triehash", default-features = false }
parity-bytes = { version = "0.1.0", path = "../parity-bytes" }
# REVIEW: what's a better way to deal with this? The tests here in

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 = { version = "0.2", path = "../hashdb", default-features = false }
rlp = { version = "0.2", path = "../rlp", default-features = false }
[dev-dependencies]
trie-standardmap = { version = "0.1", path = "../trie-standardmap" }