mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 03:27: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.
33 lines
864 B
TOML
33 lines
864 B
TOML
[package]
|
|
name = "sr-io"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|
|
|
|
[dependencies]
|
|
sr-std = { path = "../sr-std", default_features = false }
|
|
environmental = { version = "~1.0", optional = true }
|
|
substrate-state-machine = { path = "../state-machine", optional = true }
|
|
substrate-primitives = { path = "../primitives", default_features = false }
|
|
parity-codec = { version = "1.1", default_features = false }
|
|
triehash = { version = "0.2", optional = true }
|
|
hashdb = { version = "0.2", default_features = false }
|
|
rlp = { version = "0.2", optional = true, default_features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"environmental",
|
|
"substrate-state-machine",
|
|
"triehash",
|
|
"substrate-primitives/std",
|
|
"parity-codec/std",
|
|
"sr-std/std",
|
|
"rlp"
|
|
]
|
|
nightly = []
|
|
strict = []
|