Rename keccak_hash to keccak-hash for consistency

Fix ref to ethcore-bytes
This commit is contained in:
David Palm 2018-07-03 10:35:59 +02:00
parent c4fb694dd3
commit 652774a6d7
6 changed files with 3 additions and 3 deletions

View File

@ -6,6 +6,6 @@ description = "Standard test map for profiling tries"
[dependencies] [dependencies]
ethereum-types = "0.3" ethereum-types = "0.3"
keccak-hash = { path = "../keccak_hash" } keccak-hash = { path = "../keccak-hash" }
parity-bytes = { path = "../parity-bytes" } parity-bytes = { path = "../parity-bytes" }
rlp = { path = "../rlp" } rlp = { path = "../rlp" }

View File

@ -16,7 +16,7 @@
//! Key-value datastore with a modified Merkle tree. //! Key-value datastore with a modified Merkle tree.
extern crate ethcore_bytes as bytes; extern crate parity_bytes as bytes;
extern crate ethereum_types; extern crate ethereum_types;
extern crate keccak_hash; extern crate keccak_hash;
extern crate rlp; extern crate rlp;

View File

@ -9,7 +9,7 @@ license = "GPL-3.0"
elastic-array = "0.10" elastic-array = "0.10"
ethereum-types = "0.3" ethereum-types = "0.3"
rlp = { path = "../rlp" } rlp = { path = "../rlp" }
keccak-hash = { path = "../keccak_hash" } keccak-hash = { path = "../keccak-hash" }
[dev-dependencies] [dev-dependencies]
trie-standardmap = { path = "../trie-standardmap" } trie-standardmap = { path = "../trie-standardmap" }