From 77209104d7ce3ee69df62922bb4f99dff49b9084 Mon Sep 17 00:00:00 2001 From: David Palm Date: Thu, 23 Aug 2018 15:43:22 +0200 Subject: [PATCH] Add `ethereum` feature --- triehash/Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/triehash/Cargo.toml b/triehash/Cargo.toml index 18c0a69..32b1731 100644 --- a/triehash/Cargo.toml +++ b/triehash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "triehash" -version = "0.2.1" +version = "0.2.2" authors = ["Parity Technologies "] description = "in memory patricia trie operations" repository = "https://github.com/paritytech/parity-common" @@ -15,4 +15,7 @@ rlp = { version = "0.2", path = "../rlp", default-features = false } trie-standardmap = { version = "0.1", path = "../trie-standardmap" } keccak-hasher = { version = "0.1", path = "../test-support/keccak-hasher" } tiny-keccak = "1.4.2" -ethereum-types = "0.4" \ No newline at end of file +ethereum-types = "0.4" + +[features] +ethereum = ["rlp/ethereum"] \ No newline at end of file