2017-11-25 21:27:58 +01:00
|
|
|
[package]
|
|
|
|
name = "pwasm-run-test"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
serde_derive = "1"
|
2018-01-10 13:35:18 +01:00
|
|
|
ethereum-types = "0.1"
|
2017-11-25 21:27:58 +01:00
|
|
|
ethjson = { path = "../../../json" }
|
|
|
|
vm = { path = "../../vm" }
|
|
|
|
wasm = { path = "../" }
|
|
|
|
clap = "2.24"
|
|
|
|
ethcore-logger = { path = "../../../logger" }
|
|
|
|
rustc-hex = "1"
|
|
|
|
|
|
|
|
[features]
|
2018-01-10 13:35:18 +01:00
|
|
|
default = ["ethereum-types/std"]
|