2019-07-04 15:20:44 +02:00
|
|
|
[package]
|
2019-07-08 18:17:48 +02:00
|
|
|
name = "pod"
|
2019-07-18 12:27:08 +02:00
|
|
|
description = "State/Account system expressed in Plain Old Data."
|
2019-07-04 15:20:44 +02:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2019-07-18 12:27:08 +02:00
|
|
|
license = "GPL-3.0"
|
|
|
|
version = "0.1.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
common-types = { path = "../types" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
ethjson = { path = "../../json" }
|
|
|
|
ethtrie = { package = "patricia-trie-ethereum", path = "../../util/patricia-trie-ethereum" }
|
2019-08-15 15:36:48 +02:00
|
|
|
hash-db = "0.15.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
itertools = "0.8"
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
2020-02-03 19:00:23 +01:00
|
|
|
kvdb = "0.3.1"
|
2019-07-04 15:20:44 +02:00
|
|
|
log = "0.4"
|
|
|
|
parity-bytes = "0.1.0"
|
|
|
|
rlp = "0.4"
|
|
|
|
rustc-hex = "1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-12-20 12:27:38 +01:00
|
|
|
trie-db = "0.18.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
triehash = { package = "triehash-ethereum", version = "0.2", path = "../../util/triehash-ethereum" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
macros = { path = "../../util/macros" }
|