mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
43 lines
1.7 KiB
TOML
43 lines
1.7 KiB
TOML
[package]
|
|
name = "pallet-session-benchmarking"
|
|
version = "2.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME sessions pallet benchmarking"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/std" }
|
|
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
|
|
frame-system = { version = "2.0.0-dev", default-features = false, path = "../../system" }
|
|
frame-benchmarking = { version = "2.0.0-dev", default-features = false, path = "../../benchmarking" }
|
|
frame-support = { version = "2.0.0-dev", default-features = false, path = "../../support" }
|
|
pallet-staking = { version = "2.0.0-dev", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
|
pallet-session = { version = "2.0.0-dev", default-features = false, path = "../../session" }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0.101" }
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
|
|
sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
|
|
pallet-staking-reward-curve = { version = "2.0.0-dev", path = "../../staking/reward-curve" }
|
|
sp-io ={ path = "../../../primitives/io", version = "2.0.0-dev"}
|
|
pallet-timestamp = { version = "2.0.0-dev", path = "../../timestamp" }
|
|
pallet-balances = { version = "2.0.0-dev", path = "../../balances" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"frame-system/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"pallet-staking/std",
|
|
"pallet-session/std",
|
|
]
|