Files
pezkuwi-subxt/substrate/core/sr-sandbox/Cargo.toml
T
Bastian Köcher 2332d6dd04 More dependency cleanup (#825)
* Removes `rlp` dependency

* Enable warnings about unused crates in the CI

* Remove all the unused crates

* Make tests working again
2018-09-27 17:52:51 +01:00

30 lines
615 B
TOML
Executable File

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