mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 14:58:03 +00:00
0078927ac5
* update codec * use new codec * update grandpa code * build .lock and binaries
30 lines
620 B
TOML
Executable File
30 lines
620 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.3", optional = true }
|
|
substrate-primitives = { path = "../primitives", default-features = false }
|
|
sr-std = { path = "../sr-std", default-features = false }
|
|
parity-codec = { version = "3.0", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
wabt = "~0.7.4"
|
|
assert_matches = "1.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"wasmi",
|
|
"substrate-primitives/std",
|
|
"sr-std/std",
|
|
"parity-codec/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|