parity-common/triehash/Cargo.toml

21 lines
662 B
TOML
Raw Normal View History

[package]
name = "triehash"
version = "0.2.3"
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]
elastic-array = "0.10"
2018-08-20 06:43:41 -07:00
hashdb = { version = "0.2", path = "../hashdb", default-features = false }
rlp = { version = "0.2.4", path = "../rlp", default-features = false }
[dev-dependencies]
2018-07-06 10:27:08 -07:00
trie-standardmap = { version = "0.1", path = "../trie-standardmap" }
2018-07-09 08:59:41 -07:00
keccak-hasher = { version = "0.1", 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"]