ea341084f0
- 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.
37 lines
852 B
TOML
37 lines
852 B
TOML
[package]
|
|
name = "node-runtime-pez-generate-bags"
|
|
version = "3.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 and pez-kitchensink-runtime."
|
|
publish = false
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
pez-generate-bags = { workspace = true, default-features = true }
|
|
pez-kitchensink-runtime = { workspace = true }
|
|
|
|
# third-party
|
|
clap = { features = ["derive"], workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pez-generate-bags/runtime-benchmarks",
|
|
"pez-kitchensink-runtime/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"pez-generate-bags/std",
|
|
]
|
|
try-runtime = [
|
|
"pez-generate-bags/try-runtime",
|
|
"pez-kitchensink-runtime/try-runtime",
|
|
]
|
|
experimental = []
|
|
with-tracing = []
|