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
+49
View File
@@ -66,6 +66,7 @@ runtime-benchmarks = [
"pezsc-sync-state-rpc/runtime-benchmarks",
"pezsc-transaction-pool-api/runtime-benchmarks",
"pezsp-api/runtime-benchmarks",
"pezsp-application-crypto/runtime-benchmarks",
"pezsp-block-builder/runtime-benchmarks",
"pezsp-blockchain/runtime-benchmarks",
"pezsp-consensus-babe/runtime-benchmarks",
@@ -74,3 +75,51 @@ runtime-benchmarks = [
"pezsp-runtime/runtime-benchmarks",
"pezsp-statement-store/runtime-benchmarks",
]
std = [
"bizinikiwi-frame-rpc-system/std",
"bizinikiwi-state-trie-migration-rpc/std",
"pezmmr-rpc/std",
"pezpallet-transaction-payment-rpc/std",
"pezsc-chain-spec/std",
"pezsc-client-api/std",
"pezsc-consensus-babe-rpc/std",
"pezsc-consensus-babe/std",
"pezsc-consensus-beefy-rpc/std",
"pezsc-consensus-beefy/std",
"pezsc-consensus-grandpa-rpc/std",
"pezsc-consensus-grandpa/std",
"pezsc-mixnet/std",
"pezsc-rpc/std",
"pezsc-sync-state-rpc/std",
"pezsc-transaction-pool-api/std",
"pezsp-blockchain/std",
"pezsp-consensus/std",
]
try-runtime = [
"bizinikiwi-frame-rpc-system/try-runtime",
"bizinikiwi-state-trie-migration-rpc/try-runtime",
"pez-node-primitives/try-runtime",
"pezmmr-rpc/try-runtime",
"pezpallet-transaction-payment-rpc/try-runtime",
"pezsc-chain-spec/try-runtime",
"pezsc-client-api/try-runtime",
"pezsc-consensus-babe-rpc/try-runtime",
"pezsc-consensus-babe/try-runtime",
"pezsc-consensus-beefy-rpc/try-runtime",
"pezsc-consensus-beefy/try-runtime",
"pezsc-consensus-grandpa-rpc/try-runtime",
"pezsc-consensus-grandpa/try-runtime",
"pezsc-mixnet/try-runtime",
"pezsc-rpc/try-runtime",
"pezsc-sync-state-rpc/try-runtime",
"pezsc-transaction-pool-api/try-runtime",
"pezsp-api/try-runtime",
"pezsp-block-builder/try-runtime",
"pezsp-blockchain/try-runtime",
"pezsp-consensus-babe/try-runtime",
"pezsp-consensus-beefy/try-runtime",
"pezsp-consensus/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-statement-store/try-runtime",
]
serde = []