trie-root 0.16.0

In-memory patricia trie operations
Documentation
[package]
name = "trie-root"
version = "0.16.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "In-memory patricia trie operations"
repository = "https://github.com/paritytech/trie"
license = "Apache-2.0"
categories = [ "no-std" ]
edition = "2018"

[dependencies]
hash-db = { path = "../hash-db", default-features = false, version = "0.15.2" }

[dev-dependencies]
hex-literal = "0.2"
keccak-hasher = { path = "../test-support/keccak-hasher", version = "0.15.2" }
trie-standardmap = { path = "../test-support/trie-standardmap", version = "0.15.2" }
# DISABLE the following line when publishing until cyclic dependencies are resolved https://github.com/rust-lang/cargo/issues/4242
#reference-trie = { path = "../test-support/reference-trie", default-features = false, version = "0.20.0" }

[features]
default = ["std"]
std = [
	"hash-db/std"
]