diff --git a/keccak_hash/Cargo.toml b/keccak-hash/Cargo.toml similarity index 100% rename from keccak_hash/Cargo.toml rename to keccak-hash/Cargo.toml diff --git a/keccak_hash/benches/keccak_256.rs b/keccak-hash/benches/keccak_256.rs similarity index 100% rename from keccak_hash/benches/keccak_256.rs rename to keccak-hash/benches/keccak_256.rs diff --git a/keccak_hash/src/lib.rs b/keccak-hash/src/lib.rs similarity index 100% rename from keccak_hash/src/lib.rs rename to keccak-hash/src/lib.rs diff --git a/trie-standardmap/Cargo.toml b/trie-standardmap/Cargo.toml index ca32940..a240d41 100644 --- a/trie-standardmap/Cargo.toml +++ b/trie-standardmap/Cargo.toml @@ -6,6 +6,6 @@ description = "Standard test map for profiling tries" [dependencies] ethereum-types = "0.3" -keccak-hash = { path = "../keccak_hash" } +keccak-hash = { path = "../keccak-hash" } parity-bytes = { path = "../parity-bytes" } rlp = { path = "../rlp" } diff --git a/trie-standardmap/src/lib.rs b/trie-standardmap/src/lib.rs index 51c8593..931dc57 100644 --- a/trie-standardmap/src/lib.rs +++ b/trie-standardmap/src/lib.rs @@ -16,7 +16,7 @@ //! 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 keccak_hash; extern crate rlp; diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 5f37688..5848a7f 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -9,7 +9,7 @@ license = "GPL-3.0" elastic-array = "0.10" ethereum-types = "0.3" rlp = { path = "../rlp" } -keccak-hash = { path = "../keccak_hash" } +keccak-hash = { path = "../keccak-hash" } [dev-dependencies] trie-standardmap = { path = "../trie-standardmap" }