From beafa8f2df5b2f143d125696bcb80da98a7841f1 Mon Sep 17 00:00:00 2001 From: David Palm Date: Fri, 6 Jul 2018 19:35:03 +0200 Subject: [PATCH] Fix toml syntax Add keccak-hasher test-helper as a test dep --- triehash/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 7fb1e49..95cda83 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -9,8 +9,9 @@ license = "GPL-3.0" [dependencies] elastic-array = "0.10" ethereum-types = "0.3" -hashdb = { version = "0.2", "path = "../hashdb" } +hashdb = { version = "0.2", path = "../hashdb" } rlp = { version = "0.2.1", path = "../rlp" } [dev-dependencies] trie-standardmap = { version = "0.1", path = "../trie-standardmap" } +keccak-hasher = { path = "../test-support/keccak-hasher" }