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 89dc7298e8
commit ea341084f0
588 changed files with 10228 additions and 28 deletions
+20 -1
View File
@@ -115,13 +115,29 @@ runtime-benchmarks = [
"pezsp-version?/runtime-benchmarks",
]
try-runtime = [
"pezframe-benchmarking?/try-runtime",
"pezframe-executive/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system-benchmarking?/try-runtime",
"pezframe-system/try-runtime",
"pezframe-try-runtime/try-runtime",
"pezsp-api?/try-runtime",
"pezsp-block-builder?/try-runtime",
"pezsp-consensus-aura?/try-runtime",
"pezsp-consensus-grandpa?/try-runtime",
"pezsp-genesis-builder?/try-runtime",
"pezsp-inherents?/try-runtime",
"pezsp-keyring?/try-runtime",
"pezsp-offchain?/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-session?/try-runtime",
"pezsp-transaction-pool?/try-runtime",
"pezsp-version?/try-runtime",
]
experimental = [
"pezframe-support/experimental",
"pezframe-system/experimental",
]
experimental = ["pezframe-support/experimental"]
runtime = [
"pezframe-executive",
"pezframe-system-rpc-runtime-api",
@@ -138,3 +154,6 @@ runtime = [
"pezsp-transaction-pool",
"pezsp-version",
]
serde = []
with-tracing = []
tuples-96 = []