3c3d2ef2b9
* Replace hardcoded JSON with serde json! macro * Use "{:#x}" formatter instead of "0x{:x}" * Sort fields of JSON test strings alphabetically * Stop escaping new lines in evmbin JSON errors * Remove unnecessary 'to_string()' calls * Add test with non-empty storage values
33 lines
749 B
TOML
33 lines
749 B
TOML
[package]
|
|
name = "evmbin"
|
|
description = "Parity's EVM implementation"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[[bin]]
|
|
name = "parity-evm"
|
|
path = "./src/main.rs"
|
|
|
|
[dependencies]
|
|
docopt = "0.8"
|
|
env_logger = "0.5"
|
|
ethcore = { path = "../ethcore", features = ["test-helpers", "json-tests"] }
|
|
ethjson = { path = "../json" }
|
|
parity-bytes = "0.1"
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
|
ethereum-types = "0.4"
|
|
evm = { path = "../ethcore/evm" }
|
|
panic_hook = { path = "../util/panic_hook" }
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
vm = { path = "../ethcore/vm" }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.1"
|
|
tempdir = "0.3"
|
|
|
|
[features]
|
|
evm-debug = ["ethcore/evm-debug-tests"]
|