34 lines
938 B
TOML
34 lines
938 B
TOML
[package]
|
|
name = "generate-bags"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bag threshold generation script for pallet-bag-list"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# FRAME
|
|
frame-election-provider-support = { workspace = true, default-features = true }
|
|
frame-support = { workspace = true, default-features = true }
|
|
frame-system = { workspace = true, default-features = true }
|
|
pallet-staking = { workspace = true, default-features = true }
|
|
sp-staking = { workspace = true, default-features = true }
|
|
|
|
# third party
|
|
chrono = { workspace = true }
|
|
num-format = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"frame-election-provider-support/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
]
|