diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 68b15f3..1552f4f 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -9,7 +9,6 @@ license = "GPL-3.0" elastic-array = "0.10" ethereum-types = "0.3" hashdb = { path = "../hashdb" } -keccak-hash = { path = "../keccak-hash" } rlp = { path = "../rlp" } [dev-dependencies] diff --git a/triehash/src/lib.rs b/triehash/src/lib.rs index f0c2dda..b73e076 100644 --- a/triehash/src/lib.rs +++ b/triehash/src/lib.rs @@ -20,7 +20,6 @@ extern crate elastic_array; extern crate ethereum_types; -extern crate keccak_hash as hash; extern crate hashdb; extern crate rlp; #[cfg(test)] extern crate keccak_hasher;