Files
pezkuwi-subxt/substrate/substrate/runtime-sandbox/Cargo.toml
T
2018-07-03 16:38:39 +02:00

31 lines
755 B
TOML
Executable File

[package]
name = "substrate-runtime-sandbox"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.2"
[dependencies]
wasmi = { version = "0.1", optional = true }
substrate-primitives = { path = "../primitives", default_features = false }
substrate-runtime-std = { path = "../runtime-std", default_features = false }
substrate-runtime-io = { path = "../runtime-io", default_features = false }
substrate-codec = { path = "../codec", default_features = false }
[dev-dependencies]
wabt = "0.4"
[features]
default = ["std"]
std = [
"wasmi",
"substrate-primitives/std",
"substrate-runtime-std/std",
"substrate-codec/std",
"substrate-runtime-io/std",
]
nightly = []
strict = []