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
+41
View File
@@ -83,7 +83,9 @@ default = ["std"]
std = [
"array-bytes",
"bizinikiwi-test-runtime-client/std",
"bizinikiwi-wasm-builder",
"bizinikiwi-wasm-builder?/std",
"codec/std",
"log/std",
"pezframe-executive/std",
@@ -95,14 +97,19 @@ std = [
"pezpallet-balances/std",
"pezpallet-timestamp/std",
"pezpallet-utility/std",
"pezsc-block-builder/std",
"pezsc-chain-spec/std",
"pezsc-executor-common/std",
"pezsc-executor/std",
"pezsc-service",
"pezsc-service?/std",
"pezsp-api/std",
"pezsp-application-crypto/std",
"pezsp-block-builder/std",
"pezsp-consensus-aura/std",
"pezsp-consensus-babe/std",
"pezsp-consensus-grandpa/std",
"pezsp-consensus/std",
"pezsp-core/std",
"pezsp-crypto-hashing/std",
"pezsp-debug-derive/std",
@@ -150,6 +157,7 @@ runtime-benchmarks = [
"pezsc-executor/runtime-benchmarks",
"pezsc-service?/runtime-benchmarks",
"pezsp-api/runtime-benchmarks",
"pezsp-application-crypto/runtime-benchmarks",
"pezsp-block-builder/runtime-benchmarks",
"pezsp-consensus-aura/runtime-benchmarks",
"pezsp-consensus-babe/runtime-benchmarks",
@@ -167,3 +175,36 @@ runtime-benchmarks = [
"pezsp-trie/runtime-benchmarks",
"pezsp-version/runtime-benchmarks",
]
try-runtime = [
"bizinikiwi-test-runtime-client/try-runtime",
"pezframe-executive/try-runtime",
"pezframe-metadata-hash-extension/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezpallet-babe/try-runtime",
"pezpallet-balances/try-runtime",
"pezpallet-timestamp/try-runtime",
"pezpallet-utility/try-runtime",
"pezsc-block-builder/try-runtime",
"pezsc-chain-spec/try-runtime",
"pezsc-executor/try-runtime",
"pezsc-service?/try-runtime",
"pezsp-api/try-runtime",
"pezsp-block-builder/try-runtime",
"pezsp-consensus-aura/try-runtime",
"pezsp-consensus-babe/try-runtime",
"pezsp-consensus-grandpa/try-runtime",
"pezsp-consensus/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",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []
@@ -45,3 +45,24 @@ runtime-benchmarks = [
"pezsp-consensus/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = [
"bizinikiwi-test-client/std",
"pezsc-block-builder/std",
"pezsc-client-api/std",
"pezsc-consensus/std",
"pezsp-blockchain/std",
"pezsp-consensus/std",
]
try-runtime = [
"bizinikiwi-test-client/try-runtime",
"bizinikiwi-test-runtime/try-runtime",
"pezsc-block-builder/try-runtime",
"pezsc-client-api/try-runtime",
"pezsc-consensus/try-runtime",
"pezsp-api/try-runtime",
"pezsp-blockchain/try-runtime",
"pezsp-consensus/try-runtime",
"pezsp-runtime/try-runtime",
]
serde = []
with-tracing = []
@@ -37,3 +37,18 @@ runtime-benchmarks = [
"pezsp-blockchain/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = [
"bizinikiwi-test-runtime-client/std",
"log/std",
"pezsc-transaction-pool-api/std",
"pezsc-transaction-pool/std",
"pezsp-blockchain/std",
]
try-runtime = [
"bizinikiwi-test-runtime-client/try-runtime",
"pezsc-transaction-pool-api/try-runtime",
"pezsc-transaction-pool/try-runtime",
"pezsp-blockchain/try-runtime",
"pezsp-runtime/try-runtime",
]
serde = []