e95b093483
* ethereum-types refactor in progress * ethereum-types refactor in progress * ethereum-types refactor in progress * ethereum-types refactor in progress * ethereum-types refactor finished * removed obsolete util/src/lib.rs * removed commented out code
20 lines
642 B
TOML
20 lines
642 B
TOML
[package]
|
|
name = "patricia-trie"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Merkle-Patricia Trie (Ethereum Style)"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
elastic-array = "0.9"
|
|
log = "0.3"
|
|
rand = "0.3"
|
|
ethcore-bytes = { version = "0.1.0", path = "../bytes" }
|
|
ethereum-types = "0.1"
|
|
keccak-hash = { version = "0.1.0", path = "../hash" }
|
|
hashdb = { version = "0.1.1", path = "../hashdb" }
|
|
rlp = { version = "0.2.1", path = "../rlp" }
|
|
triehash = { version = "0.1.0", path = "../triehash" }
|
|
memorydb = { version = "0.1.0", path = "../memorydb" }
|
|
ethcore-logger = { version = "1.9.0", path = "../../logger" }
|