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
+50
View File
@@ -125,11 +125,61 @@ runtime-benchmarks = [
"pezkuwi-primitives-test-helpers/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezkuwi-statement-distribution/runtime-benchmarks",
"pezsc-keystore/runtime-benchmarks",
"pezsc-network/runtime-benchmarks",
"pezsc-service/runtime-benchmarks",
"pezsp-application-crypto/runtime-benchmarks",
"pezsp-consensus-babe/runtime-benchmarks",
"pezsp-consensus/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-timestamp/runtime-benchmarks",
]
std = [
"gum/std",
"pezkuwi-approval-distribution/std",
"pezkuwi-availability-bitfield-distribution/std",
"pezkuwi-availability-distribution/std",
"pezkuwi-availability-recovery/std",
"pezkuwi-dispute-distribution/std",
"pezkuwi-node-core-approval-voting-parallel/std",
"pezkuwi-node-core-approval-voting/std",
"pezkuwi-node-core-av-store/std",
"pezkuwi-node-core-dispute-coordinator/std",
"pezkuwi-node-metrics/std",
"pezkuwi-node-network-protocol/std",
"pezkuwi-node-subsystem-test-helpers/std",
"pezkuwi-node-subsystem-types/std",
"pezkuwi-node-subsystem-util/std",
"pezkuwi-node-subsystem/std",
"pezkuwi-overseer/std",
"pezkuwi-pez-node-primitives/std",
"pezkuwi-primitives-test-helpers/std",
"pezkuwi-primitives/std",
"pezkuwi-statement-distribution/std",
"pezsc-keystore/std",
"pezsc-network-types/std",
"pezsc-network/std",
"pezsc-service/std",
"pezsp-consensus/std",
"pezsp-runtime/std",
"pezsp-tracing/std",
"prometheus-endpoint/std",
"serde_json/std",
]
try-runtime = [
"pezkuwi-node-core-approval-voting/try-runtime",
"pezkuwi-node-network-protocol/try-runtime",
"pezkuwi-node-subsystem-types/try-runtime",
"pezkuwi-primitives-test-helpers/try-runtime",
"pezkuwi-primitives/try-runtime",
"pezsc-network/try-runtime",
"pezsc-service/try-runtime",
"pezsp-consensus-babe/try-runtime",
"pezsp-consensus/try-runtime",
"pezsp-keyring/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-timestamp/try-runtime",
]
serde = []
with-tracing = []