70c3001d2d
* Fixing --no-default-features again and evmbin * Fixing evmbin Result
23 lines
405 B
TOML
23 lines
405 B
TOML
[package]
|
|
name = "evm"
|
|
description = "Parity's EVM implementation"
|
|
version = "0.1.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
|
|
[lib]
|
|
name = "evm"
|
|
path = "./src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "evm"
|
|
path = "./src/main.rs"
|
|
|
|
[dependencies]
|
|
rustc-serialize = "0.3"
|
|
docopt = { version = "0.6" }
|
|
ethcore = { path = "../ethcore" }
|
|
ethcore-util = { path = "../util" }
|
|
|
|
[features]
|
|
evm-debug = ["ethcore/evm-debug-tests"]
|