2016-07-11 09:42:41 +02:00
|
|
|
[package]
|
2017-02-15 16:58:42 +01:00
|
|
|
name = "evmbin"
|
2016-07-11 09:42:41 +02:00
|
|
|
description = "Parity's EVM implementation"
|
|
|
|
version = "0.1.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
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-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2018-11-11 11:19:44 +01:00
|
|
|
docopt = "1.0"
|
2018-08-20 14:05:01 +02:00
|
|
|
env_logger = "0.5"
|
2018-11-25 20:12:59 +01:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers", "json-tests", "to-pod-full"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2019-01-04 14:05:46 +01:00
|
|
|
ethjson = { path = "../json" }
|
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"
|
2018-01-11 17:49:10 +01:00
|
|
|
rustc-hex = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2018-09-11 11:36:38 +02:00
|
|
|
serde_json = "1.0"
|
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]
|
|
|
|
pretty_assertions = "0.1"
|
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"]
|