mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 05:51:02 +00:00
e1b6f68f60
* Wasm diagnostics * Pass the error * Make errno optional * Cargo.lock * Log the error
28 lines
711 B
TOML
Executable File
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 = []
|