Files
pezkuwi-sdk/substrate/frame/election-provider-support/benchmarking/Cargo.toml
T

42 lines
1.1 KiB
TOML

[package]
name = "pallet-election-provider-support-benchmarking"
version = "27.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "Benchmarking for election provider support onchain config trait"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { features = ["derive"], workspace = true }
frame-benchmarking = { optional = true, workspace = true }
frame-election-provider-support = { workspace = true }
frame-system = { workspace = true }
sp-npos-elections = { workspace = true }
sp-runtime = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"frame-benchmarking?/std",
"frame-election-provider-support/std",
"frame-system/std",
"sp-npos-elections/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-election-provider-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-npos-elections/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]