From a3fbe68b781911fb17610c8f7927cc531197bf11 Mon Sep 17 00:00:00 2001 From: David Palm Date: Tue, 3 Jul 2018 10:32:14 +0200 Subject: [PATCH] Don't use the 'version' key inside `common` --- rlp/Cargo.toml | 2 +- triehash/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rlp/Cargo.toml b/rlp/Cargo.toml index 3bde720..d5f1e2b 100644 --- a/rlp/Cargo.toml +++ b/rlp/Cargo.toml @@ -7,7 +7,7 @@ version = "0.2.1" authors = ["Parity Technologies "] [dependencies] +byteorder = "1.0" elastic-array = "0.10" ethereum-types = "0.3" rustc-hex = "1.0" -byteorder = "1.0" diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index ee42b9d..5f37688 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -7,9 +7,9 @@ license = "GPL-3.0" [dependencies] elastic-array = "0.10" -rlp = { version = "0.2.1", path = "../rlp" } ethereum-types = "0.3" -keccak-hash = { version = "0.1", path = "../hash" } +rlp = { path = "../rlp" } +keccak-hash = { path = "../keccak_hash" } [dev-dependencies] trie-standardmap = { path = "../trie-standardmap" }