memory-db 0.21.2

In-memory implementation of hash-db, useful for tests
Documentation
[package]
name = "memory-db"
version = "0.21.2"
authors = ["Parity Technologies <admin@parity.io>"]
description = "In-memory implementation of hash-db, useful for tests"
repository = "https://github.com/paritytech/trie"
license = "Apache-2.0"
edition = "2018"

[dependencies]
heapsize = { version = "0.4", optional = true }
parity-util-mem = { version = "0.7.0", default-features = false, features = ["hashbrown"] }
hash-db = { path = "../hash-db", default-features = false, version = "0.15.2"}
hashbrown = { version = "0.8.0", default-features = false, features = [ "ahash" ] }

[dev-dependencies]
keccak-hasher = { path = "../test-support/keccak-hasher", version = "0.15.2"}
criterion = "0.2.8"

[features]
default = ["std"]
std = [
  "hash-db/std",
  "parity-util-mem/std",
]
deprecated = [ "heapsize" ]

[[bench]]
name = "bench"
harness = false