2019-07-04 15:20:44 +02:00
|
|
|
[package]
|
2019-07-08 18:17:48 +02:00
|
|
|
name = "account-state"
|
2019-07-18 12:27:08 +02:00
|
|
|
description = "Ethereum accounts, keeps track of changes to the code and storage"
|
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"}
|
2020-01-24 14:52:50 +01:00
|
|
|
derive_more = "0.99"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
ethtrie = { package = "patricia-trie-ethereum", path = "../../util/patricia-trie-ethereum" }
|
2019-07-08 18:17:48 +02:00
|
|
|
trie-vm-factories = { path = "../trie-vm-factories" }
|
2019-08-15 15:36:48 +02:00
|
|
|
hash-db = "0.15.0"
|
2019-07-08 18:17:48 +02:00
|
|
|
journaldb = { path = "../../util/journaldb" }
|
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" }
|
2019-12-20 12:27:38 +01:00
|
|
|
kvdb = "0.2"
|
2019-07-04 15:20:44 +02:00
|
|
|
log = "0.4"
|
|
|
|
lru-cache = "0.1.2"
|
2019-12-20 12:27:38 +01:00
|
|
|
memory-db = "0.18.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
parity-bytes = "0.1.0"
|
2019-12-20 12:27:38 +01:00
|
|
|
parity-util-mem = "0.3.0"
|
2019-09-27 23:29:14 +02:00
|
|
|
parking_lot = "0.9"
|
2019-07-08 18:17:48 +02:00
|
|
|
pod = { path = "../pod" }
|
2019-07-04 15:20:44 +02:00
|
|
|
rlp = "0.4.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-07-08 18:17:48 +02:00
|
|
|
trace = { path = "../trace" }
|
2019-12-20 12:27:38 +01:00
|
|
|
trie-db = "0.18.0"
|
2019-07-04 15:20:44 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-07-04 17:50:31 +02:00
|
|
|
account-db = { path = "../account-db" }
|
2019-07-04 15:20:44 +02:00
|
|
|
journaldb = { path = "../../util/journaldb" }
|
|
|
|
parity-bytes = "0.1.0"
|
2019-07-08 18:17:48 +02:00
|
|
|
rlp_compress = { path = "../../util/rlp-compress" }
|