mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 06:48:01 +00:00
2332d6dd04
* Removes `rlp` dependency * Enable warnings about unused crates in the CI * Remove all the unused crates * Make tests working again
30 lines
615 B
TOML
Executable File
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 = []
|