Prepare triehash for cargo publication

This commit is contained in:
David Palm 2018-07-06 19:27:08 +02:00
parent e0e9797981
commit 692de29a8c
3 changed files with 7 additions and 6 deletions

View File

@ -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.1.0", path = "../triehash" }
# REVIEW: what's a better way to deal with this? The tests here in

View File

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

View File

@ -3,13 +3,14 @@ name = "triehash"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
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"
rlp = { path = "../rlp" }
keccak-hash = { path = "../keccak-hash" }
rlp = { version = "0.2.1", path = "../rlp" }
keccak-hash = { version = "0.1", path = "../keccak-hash" }
[dev-dependencies]
trie-standardmap = { path = "../trie-standardmap" }
trie-standardmap = { version = "0.1", path = "../trie-standardmap" }