Files
pezkuwi-subxt/substrate/core/trie/Cargo.toml
T
thiolliere 9de35fa7d5 update rhododendron trie-bench for parity-codec 3.0 (#1613)
* update rhd and tri

* .lock and wasm build
2019-01-31 11:04:41 +01:00

37 lines
909 B
TOML

[package]
name = "substrate-trie"
version = "0.4.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Patricia trie stuff using a parity-codec node format"
repository = "https://github.com/paritytech/parity-common"
license = "GPL-3.0"
edition = "2018"
[[bench]]
name = "bench"
harness = false
[dependencies]
codec = { package = "parity-codec", version = "3.0" }
hash-db = { version = "0.9", default-features = false }
trie-db = { version = "0.9", optional = true }
trie-root = { version = "0.9", default-features = false }
memory-db = { version = "0.9", optional = true }
[dev-dependencies]
substrate-primitives = { path = "../primitives" }
trie-bench = { version = "0.10" }
trie-standardmap = { version = "0.9" }
keccak-hasher = { version = "0.2" }
criterion = "0.2"
hex-literal = "0.1.0"
[features]
default = ["std"]
std = [
"hash-db/std",
"memory-db",
"trie-db",
"trie-root/std"
]