mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17: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.
36 lines
991 B
TOML
36 lines
991 B
TOML
[package]
|
|
name = "srml-support"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
hex-literal = { version = "0.1.0", optional = true }
|
|
serde = { version = "1.0", default_features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
parity-codec = { version = "1.1", default_features = false }
|
|
substrate-primitives = { path = "../../core/primitives", default_features = false }
|
|
substrate-metadata = { path = "../../core/metadata", default_features = false }
|
|
sr-std = { path = "../../core/sr-std", default_features = false }
|
|
sr-io = { path = "../../core/sr-io", default_features = false }
|
|
mashup = "0.1.7"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
serde_json = { version = "1.0" }
|
|
parity-codec-derive = { version = "~1.0" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"hex-literal",
|
|
"serde/std",
|
|
"serde_derive",
|
|
"substrate-primitives/std",
|
|
"sr-io/std",
|
|
"parity-codec/std",
|
|
"sr-std/std",
|
|
"substrate-metadata/std",
|
|
]
|
|
nightly = []
|
|
strict = []
|