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.
This commit is contained in:
2026-01-04 20:37:14 +03:00
parent a45e5ae5ec
commit bd2d665c4e
588 changed files with 10228 additions and 28 deletions
+18
View File
@@ -86,6 +86,7 @@ std = [
"pezframe-election-provider-support/std",
"pezframe-support/std",
"pezframe-system/std",
"pezkuwi-primitives-test-helpers/std",
"pezkuwi-primitives/std",
"pezkuwi-runtime-teyrchains/std",
"pezpallet-asset-rate?/std",
@@ -157,10 +158,14 @@ runtime-benchmarks = [
"xcm/runtime-benchmarks",
]
try-runtime = [
"pez-slot-range-helper/try-runtime",
"pezframe-benchmarking?/try-runtime",
"pezframe-election-provider-support/try-runtime",
"pezframe-support-test/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezkuwi-primitives-test-helpers/try-runtime",
"pezkuwi-primitives/try-runtime",
"pezkuwi-runtime-teyrchains/try-runtime",
"pezpallet-asset-rate/try-runtime",
"pezpallet-authorship/try-runtime",
@@ -176,5 +181,18 @@ try-runtime = [
"pezpallet-transaction-payment/try-runtime",
"pezpallet-treasury/try-runtime",
"pezpallet-vesting/try-runtime",
"pezsp-api/try-runtime",
"pezsp-inherents/try-runtime",
"pezsp-keyring/try-runtime",
"pezsp-npos-elections/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-session/try-runtime",
"pezsp-staking/try-runtime",
"xcm-builder/try-runtime",
"xcm-executor?/try-runtime",
"xcm/try-runtime",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []
@@ -22,3 +22,7 @@ pezsp-runtime = { workspace = true }
default = ["std"]
std = ["codec/std", "pezsp-runtime/std"]
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
try-runtime = [
"pezsp-runtime/try-runtime",
]
serde = []