1164193019
* v1.6.4 * ensure sealing work enabled if notifier registed * fix condition check * Always send full chunks (#4960) * Bump nanomsg (#4965) * Renaming evm binary to avoid conflicts. (#4899)
23 lines
429 B
TOML
23 lines
429 B
TOML
[package]
|
|
name = "evmbin"
|
|
description = "Parity's EVM implementation"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
name = "evmbin"
|
|
path = "./src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "parity-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"]
|