mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-21 11:01:03 +00:00
128d164f2b
* Make use of parity-codec "derive" crate feature * Bump impl_version * Update wasm files and Cargo.lock files * Transferred to parity_codec derive feature for the rest of the crates * Update wasm binaries and lock files * Update core and node wasm binaries
39 lines
1.4 KiB
TOML
39 lines
1.4 KiB
TOML
[package]
|
|
name = "srml-staking"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1.0"
|
|
serde = { version = "1.0", default-features = false }
|
|
safe-mix = { version = "1.0", default-features = false}
|
|
parity-codec = { version = "3.1", default-features = false, features = ["derive"] }
|
|
substrate-keyring = { path = "../../core/keyring", optional = true }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
consensus = { package = "srml-consensus", path = "../consensus", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
session = { package = "srml-session", path = "../session", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io" }
|
|
timestamp = { package = "srml-timestamp", path = "../timestamp" }
|
|
balances = { package = "srml-balances", path = "../balances" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde/std",
|
|
"safe-mix/std",
|
|
"substrate-keyring",
|
|
"parity-codec/std",
|
|
"rstd/std",
|
|
"srml-support/std",
|
|
"primitives/std",
|
|
"session/std",
|
|
"system/std",
|
|
]
|