2018-07-02 18:50:05 +02:00
|
|
|
[package]
|
|
|
|
name = "patricia-trie-ethereum"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
description = "Merkle-Patricia Trie (Ethereum Style)"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-02-07 17:23:45 +01:00
|
|
|
trie-db = "0.20.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hasher = { version = "0.1.1", path = "../keccak-hasher" }
|
2019-08-15 15:36:48 +02:00
|
|
|
hash-db = "0.15.0"
|
2019-11-21 11:08:49 +01:00
|
|
|
rlp = "0.4.4"
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
elastic-array = "0.10"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-02-07 17:23:45 +01:00
|
|
|
memory-db = "0.19.0"
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2019-02-20 19:09:34 +01:00
|
|
|
journaldb = { path = "../journaldb" }
|
2019-12-03 12:30:07 +01:00
|
|
|
criterion = "0.3"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "rlp_node_codec"
|
|
|
|
harness = false
|