Files
pezkuwi-sdk/bizinikiwi/utils/pezframe/pez-generate-bags/Cargo.toml
T
pezkuwichain ea341084f0 fix: comprehensive feature propagation and dep:serde fixes
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates)
- Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features
- Regenerate umbrella crate with proper feature propagation
- Format all TOML files with taplo

This resolves check-umbrella and check-zepter CI failures.
2026-01-04 20:37:14 +03:00

46 lines
1.2 KiB
TOML

[package]
name = "pez-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 pezpallet-bag-list"
documentation.workspace = true
[lints]
workspace = true
[dependencies]
# FRAME
pezframe-election-provider-support = { workspace = true, default-features = true }
pezframe-support = { workspace = true, default-features = true }
pezframe-system = { workspace = true, default-features = true }
pezpallet-staking = { workspace = true, default-features = true }
pezsp-staking = { workspace = true, default-features = true }
# third party
chrono = { workspace = true }
num-format = { workspace = true }
[features]
runtime-benchmarks = [
"pezframe-election-provider-support/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezpallet-staking/runtime-benchmarks",
"pezsp-staking/runtime-benchmarks",
]
std = []
try-runtime = [
"pezframe-election-provider-support/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezpallet-staking/try-runtime",
"pezsp-staking/try-runtime",
]
serde = []
experimental = []
tuples-96 = []