2019-08-13 12:33:34 +02:00
|
|
|
[package]
|
|
|
|
description = "Ethereum state machine"
|
|
|
|
name = "machine"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
|
2019-10-31 17:09:08 +01:00
|
|
|
[[bench]]
|
|
|
|
name = "builtin_contract"
|
|
|
|
harness = false
|
|
|
|
required-features = ["test-helpers"]
|
|
|
|
|
2019-08-13 12:33:34 +02:00
|
|
|
[dependencies]
|
|
|
|
account-state = { path = "../account-state" }
|
|
|
|
client-traits = { path = "../client-traits" }
|
|
|
|
common-types = { path = "../types" }
|
|
|
|
crossbeam-utils = "0.6"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethabi = "9.0.1"
|
|
|
|
ethabi-contract = "9.0.0"
|
|
|
|
ethabi-derive = "9.0.1"
|
2019-08-13 12:33:34 +02:00
|
|
|
ethcore-builtin = { path = "../builtin" }
|
|
|
|
ethcore-call-contract = { path = "../call-contract" }
|
|
|
|
ethcore-io = { path = "../../util/io" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-08-13 12:33:34 +02:00
|
|
|
# Used for tests in other crates through the `test-helpers` feature
|
|
|
|
ethjson = { path = "../../json", optional = true }
|
|
|
|
evm = { path = "../evm" }
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2019-08-13 12:33:34 +02:00
|
|
|
log = "0.4"
|
|
|
|
lru-cache = "0.1.2"
|
|
|
|
parity-bytes = "0.1.0"
|
2019-09-27 23:29:14 +02:00
|
|
|
parking_lot = "0.9"
|
2019-08-13 12:33:34 +02:00
|
|
|
rlp = "0.4.2"
|
|
|
|
state-db = { path = "../state-db" }
|
|
|
|
trace = { path = "../trace" }
|
|
|
|
trie-vm-factories = { path = "../trie-vm-factories" }
|
|
|
|
vm = { path = "../vm" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-09-02 11:38:27 +02:00
|
|
|
common-types = { path = "../types", features = ["test-helpers"] }
|
2019-10-31 17:09:08 +01:00
|
|
|
criterion = "0.3"
|
2019-08-13 12:33:34 +02:00
|
|
|
ethcore = { path = "../", features = ["test-helpers"] }
|
|
|
|
ethcore-io = { path = "../../util/io" }
|
|
|
|
ethjson = { path = "../../json" }
|
2019-10-23 13:03:46 +02:00
|
|
|
parity-crypto = { version = "0.4.2", features = ["publickey"] }
|
2019-08-13 12:33:34 +02:00
|
|
|
macros = { path = "../../util/macros" }
|
|
|
|
rustc-hex = "1.0"
|
2019-08-23 15:32:58 +02:00
|
|
|
spec = { path = "../spec" }
|
2019-08-13 12:33:34 +02:00
|
|
|
tempdir = "0.3"
|
|
|
|
trace = { path = "../trace" }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-helpers = ["ethjson"]
|