2016-07-11 09:42:41 +02:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity EVM Implementation"
|
2017-02-15 16:58:42 +01:00
|
|
|
name = "evmbin"
|
2016-07-11 09:42:41 +02:00
|
|
|
version = "0.1.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2019-08-15 16:06:43 +02:00
|
|
|
edition = "2018"
|
2016-07-11 09:42:41 +02:00
|
|
|
|
2016-07-12 09:49:16 +02:00
|
|
|
[[bin]]
|
2017-03-14 13:08:55 +01:00
|
|
|
name = "parity-evm"
|
2016-07-12 09:49:16 +02:00
|
|
|
path = "./src/main.rs"
|
|
|
|
|
2016-07-11 09:42:41 +02:00
|
|
|
[dependencies]
|
2019-08-07 16:51:08 +02:00
|
|
|
account-state = { path = "../ethcore/account-state" }
|
2019-12-13 18:12:22 +01:00
|
|
|
common-types = { path = "../ethcore/types", features = ["test-helpers"] }
|
2018-11-11 11:19:44 +01:00
|
|
|
docopt = "1.0"
|
2018-08-20 14:05:01 +02:00
|
|
|
env_logger = "0.5"
|
2019-07-08 18:17:48 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers", "json-tests"] }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-09-13 09:38:24 +02:00
|
|
|
ethjson = { path = "../json", features = ["test-helpers"] }
|
2017-07-12 13:09:17 +02:00
|
|
|
evm = { path = "../ethcore/evm" }
|
2018-12-28 10:33:49 +01:00
|
|
|
panic_hook = { path = "../util/panic-hook" }
|
2019-01-04 14:05:46 +01:00
|
|
|
parity-bytes = "0.1"
|
2019-07-08 18:17:48 +02:00
|
|
|
pod = { path = "../ethcore/pod" }
|
2018-01-11 17:49:10 +01:00
|
|
|
rustc-hex = "1.0"
|
2019-08-15 16:06:43 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-09-11 11:36:38 +02:00
|
|
|
serde_json = "1.0"
|
2019-08-23 15:32:58 +02:00
|
|
|
spec = { path = "../ethcore/spec" }
|
2019-07-08 18:17:48 +02:00
|
|
|
trace = { path = "../ethcore/trace" }
|
2018-01-11 17:49:10 +01:00
|
|
|
vm = { path = "../ethcore/vm" }
|
2016-10-18 12:13:49 +02:00
|
|
|
|
2017-10-20 15:40:25 +02:00
|
|
|
[dev-dependencies]
|
2019-09-05 19:28:01 +02:00
|
|
|
criterion = "0.3"
|
2018-03-14 12:26:20 +01:00
|
|
|
tempdir = "0.3"
|
2017-10-20 15:40:25 +02:00
|
|
|
|
2016-10-18 12:13:49 +02:00
|
|
|
[features]
|
|
|
|
evm-debug = ["ethcore/evm-debug-tests"]
|
2019-09-05 19:28:01 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "mod"
|
|
|
|
harness = false
|