Files
pezkuwi-subxt/substrate/core/sr-sandbox/Cargo.toml
T
Sergei Pepyakin e1b6f68f60 Additional wasm diagnostics (#4097)
* Wasm diagnostics

* Pass the error

* Make errno optional

* Cargo.lock

* Log the error
2019-11-14 09:40:00 +01:00

28 lines
711 B
TOML
Executable File

[package]
name = "sr-sandbox"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
wasmi = { version = "0.6.2", optional = true }
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
runtime-io = { package = "sr-io", path = "../sr-io", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
[dev-dependencies]
wabt = "0.9.2"
assert_matches = "1.3.0"
[features]
default = ["std"]
std = [
"wasmi",
"primitives/std",
"rstd/std",
"codec/std",
"runtime-io/std",
]
strict = []