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
+20
View File
@@ -89,6 +89,7 @@ std = [
"pezframe-support/std",
"pezframe-system/std",
"pezkuwi-core-primitives/std",
"pezkuwi-primitives-test-helpers/std",
"pezkuwi-primitives/std",
"pezkuwi-runtime-metrics/std",
"pezkuwi-teyrchain-primitives/std",
@@ -102,6 +103,7 @@ std = [
"pezpallet-session/std",
"pezpallet-staking/std",
"pezpallet-timestamp/std",
"pezsc-keystore/std",
"pezsp-api/std",
"pezsp-application-crypto?/std",
"pezsp-arithmetic/std",
@@ -142,8 +144,10 @@ runtime-benchmarks = [
"pezpallet-session/runtime-benchmarks",
"pezpallet-staking/runtime-benchmarks",
"pezpallet-timestamp/runtime-benchmarks",
"pezsc-keystore/runtime-benchmarks",
"pezsp-api/runtime-benchmarks",
"pezsp-application-crypto",
"pezsp-application-crypto?/runtime-benchmarks",
"pezsp-inherents/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
@@ -156,10 +160,15 @@ runtime-benchmarks = [
"xcm/runtime-benchmarks",
]
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-core-primitives/try-runtime",
"pezkuwi-primitives-test-helpers/try-runtime",
"pezkuwi-primitives/try-runtime",
"pezkuwi-teyrchain-primitives/try-runtime",
"pezpallet-authority-discovery/try-runtime",
"pezpallet-authorship/try-runtime",
"pezpallet-babe/try-runtime",
@@ -170,9 +179,20 @@ try-runtime = [
"pezpallet-session/try-runtime",
"pezpallet-staking/try-runtime",
"pezpallet-timestamp/try-runtime",
"pezsp-api/try-runtime",
"pezsp-inherents/try-runtime",
"pezsp-keyring/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-session/try-runtime",
"pezsp-staking/try-runtime",
"xcm-executor/try-runtime",
"xcm/try-runtime",
]
runtime-metrics = [
"pezkuwi-runtime-metrics/runtime-metrics",
"pezsp-tracing/with-tracing",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []