mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
f10d8e177d
* First effort * API versioning * Introduce validate_transaction * Introduce the API plus fixes. * Docs * Typo * Add longevity parameter to transaction validity info.
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 = "1.1", 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 = []
|