9caa868603
The `patricia_trie` crate is generic over the hasher (by way of HashDB) and node encoding scheme. Adds a new `patricia_trie_ethereum` crate with concrete impls for Keccak/RLP.
19 lines
510 B
TOML
19 lines
510 B
TOML
[package]
|
|
name = "memorydb"
|
|
version = "0.2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "in-memory implementation of hashdb"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
elastic-array = "0.10"
|
|
heapsize = "0.4"
|
|
hashdb = { version = "0.2.0", path = "../hashdb" }
|
|
plain_hasher = { path = "../plain_hasher" }
|
|
rlp = { version = "0.2.1", path = "../rlp" }
|
|
|
|
[dev-dependencies]
|
|
tiny-keccak = "1.4.2"
|
|
ethereum-types = "0.3"
|
|
keccak-hasher = { path = "../keccak-hasher" }
|
|
keccak-hash = { path = "../hash" } |