mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
0b4126ca40
* Releasing frame-benchmarking 3.1 * bump in the entire dependency tree
49 lines
2.0 KiB
TOML
49 lines
2.0 KiB
TOML
[package]
|
|
name = "pallet-session-benchmarking"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME sessions pallet benchmarking"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" }
|
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
|
frame-system = { version = "3.0.0", default-features = false, path = "../../system" }
|
|
frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../benchmarking" }
|
|
frame-support = { version = "3.0.0", default-features = false, path = "../../support" }
|
|
pallet-staking = { version = "3.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
|
pallet-session = { version = "3.0.0", default-features = false, path = "../../session" }
|
|
rand = { version = "0.7.2", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0.101" }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
|
pallet-staking-reward-curve = { version = "3.0.0", path = "../../staking/reward-curve" }
|
|
sp-io ={ version = "3.0.0", path = "../../../primitives/io" }
|
|
pallet-timestamp = { version = "3.0.0", path = "../../timestamp" }
|
|
pallet-balances = { version = "3.0.0", path = "../../balances" }
|
|
sp-election-providers = { version = "3.0.0", path = "../../../primitives/election-providers" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-std/std",
|
|
"sp-session/std",
|
|
"sp-election-providers/std",
|
|
"sp-runtime/std",
|
|
"frame-system/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"pallet-staking/std",
|
|
"pallet-session/std",
|
|
]
|