openethereum/evmbin/Cargo.toml

31 lines
761 B
TOML
Raw Normal View History

[package]
name = "evmbin"
description = "Parity's EVM implementation"
version = "0.1.0"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
[[bin]]
name = "parity-evm"
path = "./src/main.rs"
[dependencies]
2017-07-06 11:36:15 +02:00
docopt = "0.8"
ethcore = { path = "../ethcore", features = ["test-helpers", "json-tests"] }
ethjson = { path = "../json" }
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
ethcore-transaction = { path = "../ethcore/transaction" }
ethereum-types = "0.3"
evm = { path = "../ethcore/evm" }
panic_hook = { path = "../util/panic_hook" }
rustc-hex = "1.0"
serde = "1.0"
serde_derive = "1.0"
vm = { path = "../ethcore/vm" }
2017-10-20 15:40:25 +02:00
[dev-dependencies]
pretty_assertions = "0.1"
tempdir = "0.3"
2017-10-20 15:40:25 +02:00
[features]
evm-debug = ["ethcore/evm-debug-tests"]