mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07: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.
46 lines
1.6 KiB
TOML
46 lines
1.6 KiB
TOML
[package]
|
|
name = "srml-staking"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1.0"
|
|
serde = { version = "1.0", default_features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
safe-mix = { version = "1.0", default_features = false}
|
|
parity-codec = { version = "1.1", default_features = false }
|
|
parity-codec-derive = { version = "~1.0", default_features = false }
|
|
substrate-keyring = { path = "../../core/keyring", optional = true }
|
|
substrate-primitives = { path = "../../core/primitives", default_features = false }
|
|
sr-std = { path = "../../core/sr-std", default_features = false }
|
|
sr-io = { path = "../../core/sr-io", default_features = false }
|
|
sr-sandbox = { path = "../../core/sr-sandbox", default_features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default_features = false }
|
|
srml-support = { path = "../support", default_features = false }
|
|
srml-balances = { path = "../balances", default_features = false }
|
|
srml-consensus = { path = "../consensus", default_features = false }
|
|
srml-system = { path = "../system", default_features = false }
|
|
srml-session = { path = "../session", default_features = false }
|
|
srml-timestamp = { path = "../timestamp", default_features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"serde_derive",
|
|
"safe-mix/std",
|
|
"substrate-keyring",
|
|
"parity-codec/std",
|
|
"parity-codec-derive/std",
|
|
"substrate-primitives/std",
|
|
"sr-std/std",
|
|
"sr-io/std",
|
|
"sr-sandbox/std",
|
|
"srml-support/std",
|
|
"sr-primitives/std",
|
|
"srml-balances/std",
|
|
"srml-session/std",
|
|
"srml-system/std",
|
|
"srml-timestamp/std"
|
|
]
|