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]
|
2019-02-20 19:09:34 +01:00
|
|
|
trie-db = "0.11.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hasher = { version = "0.1.1", path = "../keccak-hasher" }
|
2019-02-20 19:09:34 +01:00
|
|
|
hash-db = "0.11.0"
|
2019-11-11 21:57:38 +01:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
|
|
|
ethereum-types = "0.4"
|
|
|
|
elastic-array = "0.10"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-02-20 19:09:34 +01:00
|
|
|
memory-db = "0.11.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1.2"
|
2019-02-20 19:09:34 +01:00
|
|
|
journaldb = { path = "../journaldb" }
|