2019-09-10 22:44:33 +02:00
|
|
|
[package]
|
|
|
|
name = "snapshot-tests"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
accounts = { package = "ethcore-accounts", path = "../../../accounts" }
|
|
|
|
account-db = { path = "../../account-db" }
|
|
|
|
account-state = { path = "../../account-state" }
|
|
|
|
blockchain = { package = "ethcore-blockchain", path = "../../blockchain" }
|
|
|
|
bytes = { package = "parity-bytes", version = "0.1.0" }
|
|
|
|
client-traits = { path = "../../client-traits" }
|
|
|
|
common-types = { path = "../../types" }
|
|
|
|
engine = { path = "../../engine", features = ["test-helpers"] }
|
|
|
|
env_logger = "0.5"
|
|
|
|
ethcore = { path = "../..", features = ["test-helpers"] }
|
|
|
|
ethcore-db = { path = "../../db" }
|
|
|
|
ethcore-io = { path = "../../../util/io" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-09-10 22:44:33 +02:00
|
|
|
ethtrie = { package = "patricia-trie-ethereum", path = "../../../util/patricia-trie-ethereum" }
|
|
|
|
hash-db = "0.15.0"
|
|
|
|
journaldb = { path = "../../../util/journaldb" }
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2019-09-10 22:44:33 +02:00
|
|
|
keccak-hasher = { path = "../../../util/keccak-hasher" }
|
2020-02-07 17:23:45 +01:00
|
|
|
kvdb = "0.4.0"
|
2020-03-17 16:44:27 +01:00
|
|
|
kvdb-rocksdb = "0.6.0"
|
2019-09-10 22:44:33 +02:00
|
|
|
log = "0.4.8"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2020-02-10 18:29:21 +01:00
|
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
2019-10-18 15:12:16 +02:00
|
|
|
rand = "0.7"
|
|
|
|
rand_xorshift = "0.2"
|
2019-09-10 22:44:33 +02:00
|
|
|
rlp = "0.4.2"
|
|
|
|
snappy = { package = "parity-snappy", version ="0.1.0" }
|
|
|
|
snapshot = { path = "../../snapshot", features = ["test-helpers"] }
|
|
|
|
spec = { path = "../../spec" }
|
|
|
|
tempdir = "0.3"
|
2020-02-07 17:23:45 +01:00
|
|
|
trie-db = "0.20.0"
|
2019-09-10 22:44:33 +02:00
|
|
|
trie-standardmap = "0.15.0"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethabi = "9.0.1"
|
|
|
|
ethabi-contract = "9.0.0"
|
|
|
|
ethabi-derive = "9.0.1"
|
2019-09-10 22:44:33 +02:00
|
|
|
lazy_static = { version = "1.3" }
|
|
|
|
triehash = { package = "triehash-ethereum", version = "0.2", path = "../../../util/triehash-ethereum" }
|