mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
f71200ee3c
* Bump codec * Fix tests
32 lines
685 B
TOML
Executable File
32 lines
685 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 }
|
|
sr-io = { path = "../sr-io", 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",
|
|
"sr-io/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|