parity-common/triehash/Cargo.toml

21 lines
570 B
TOML
Raw Normal View History

[package]
name = "triehash"
2018-08-26 23:27:01 -07:00
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "In-memory patricia trie operations"
2018-07-06 10:27:08 -07:00
repository = "https://github.com/paritytech/parity-common"
license = "GPL-3.0"
[dependencies]
2018-09-27 08:24:18 -07:00
hashdb = { path = "../hashdb", default-features = false }
rlp = { path = "../rlp", default-features = false }
[dev-dependencies]
trie-standardmap = { path = "../trie-standardmap" }
keccak-hasher = { path = "../test-support/keccak-hasher" }
2018-08-22 11:00:42 -07:00
tiny-keccak = "1.4.2"
2018-08-23 06:43:22 -07:00
ethereum-types = "0.4"
[features]
ethereum = ["rlp/ethereum"]