07324795f1
* Fixing evmbin compilation and added standard build. (#4561) * Alias for personal_sendTransaction (#4554) * Fix console dapp (#4544) * Fixing linting issues. Better support for console as secure app * Fixing linting issues * Fix no data sent in TxQueue dapp (#4502) * Fix wrong PropType req for Embedded Signer * Fix wrong data for tx #4499
23 lines
419 B
TOML
23 lines
419 B
TOML
[package]
|
|
name = "evmbin"
|
|
description = "Parity's EVM implementation"
|
|
version = "1.5.0"
|
|
authors = ["Parity Technologies <admin@parity.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"]
|