rename hash crate to keccak-hash

This commit is contained in:
Robert Habermeier 2017-11-10 19:04:55 +01:00
parent 20295a3c10
commit 3c55633180
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,6 @@ bigint = "4.0"
elastic-array = "0.9"
heapsize = "0.4"
ethcore-bigint = { version = "0.2", path = "../bigint", features = ["heapsizeof"] }
hash = { version = "0.1.0", path = "../hash" }
keccak-hash = { version = "0.1.0", path = "../hash" }
hashdb = { version = "0.1.0", path = "../hashdb" }
rlp = { version = "0.2.0", path = "../rlp" }

View File

@ -18,7 +18,7 @@
extern crate heapsize;
extern crate ethcore_bigint as bigint;
extern crate rlp;
extern crate hash as keccak;
extern crate keccak_hash as keccak;
extern crate hashdb;
use std::mem;