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
@@ -136,6 +136,7 @@ teyrchains-runtimes-test-utils = { workspace = true, default-features = true }
default = ["std"]
std = [
"bizinikiwi-wasm-builder",
"bizinikiwi-wasm-builder?/std",
"codec/std",
"pezbp-asset-hub-pezkuwichain/std",
"pezbp-asset-hub-zagros/std",
@@ -320,16 +321,40 @@ runtime-benchmarks = [
"xcm/runtime-benchmarks",
]
try-runtime = [
"pezbp-asset-hub-pezkuwichain/try-runtime",
"pezbp-asset-hub-zagros/try-runtime",
"pezbp-bridge-hub-pezkuwichain/try-runtime",
"pezbp-bridge-hub-zagros/try-runtime",
"pezbp-header-pez-chain/try-runtime",
"pezbp-messages/try-runtime",
"pezbp-pezkuwi-bulletin/try-runtime",
"pezbp-pezkuwi-core/try-runtime",
"pezbp-relayers/try-runtime",
"pezbp-runtime/try-runtime",
"pezbp-teyrchains/try-runtime",
"pezbp-xcm-bridge-hub-router/try-runtime",
"pezbp-zagros/try-runtime",
"pezbridge-hub-common/try-runtime",
"pezbridge-hub-test-utils/try-runtime",
"pezbridge-runtime-common/try-runtime",
"pezcumulus-pezpallet-aura-ext/try-runtime",
"pezcumulus-pezpallet-session-benchmarking/try-runtime",
"pezcumulus-pezpallet-teyrchain-system/try-runtime",
"pezcumulus-pezpallet-weight-reclaim/try-runtime",
"pezcumulus-pezpallet-xcm/try-runtime",
"pezcumulus-pezpallet-xcmp-queue/try-runtime",
"pezcumulus-primitives-core/try-runtime",
"pezcumulus-primitives-utility/try-runtime",
"pezframe-benchmarking?/try-runtime",
"pezframe-executive/try-runtime",
"pezframe-metadata-hash-extension/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system-benchmarking?/try-runtime",
"pezframe-system/try-runtime",
"pezframe-try-runtime/try-runtime",
"pezkuwi-runtime-common/try-runtime",
"pezkuwi-teyrchain-primitives/try-runtime",
"pezkuwichain-runtime-constants/try-runtime",
"pezpallet-aura/try-runtime",
"pezpallet-authorship/try-runtime",
"pezpallet-balances/try-runtime",
@@ -342,18 +367,43 @@ try-runtime = [
"pezpallet-multisig/try-runtime",
"pezpallet-session/try-runtime",
"pezpallet-timestamp/try-runtime",
"pezpallet-transaction-payment-rpc-runtime-api/try-runtime",
"pezpallet-transaction-payment/try-runtime",
"pezpallet-utility/try-runtime",
"pezpallet-xcm-benchmarks?/try-runtime",
"pezpallet-xcm-bridge-hub/try-runtime",
"pezpallet-xcm/try-runtime",
"pezsnowbridge-beacon-primitives/try-runtime",
"pezsnowbridge-core/try-runtime",
"pezsnowbridge-inbound-queue-primitives/try-runtime",
"pezsnowbridge-merkle-tree/try-runtime",
"pezsnowbridge-outbound-queue-primitives/try-runtime",
"pezsnowbridge-outbound-queue-runtime-api/try-runtime",
"pezsnowbridge-pezpallet-ethereum-client/try-runtime",
"pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime",
"pezsnowbridge-pezpallet-inbound-queue/try-runtime",
"pezsnowbridge-pezpallet-outbound-queue/try-runtime",
"pezsnowbridge-pezpallet-system/try-runtime",
"pezsnowbridge-runtime-test-common/try-runtime",
"pezsp-api/try-runtime",
"pezsp-block-builder/try-runtime",
"pezsp-consensus-aura/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",
"testnet-teyrchains-constants/try-runtime",
"teyrchain-info/try-runtime",
"teyrchains-common/try-runtime",
"teyrchains-runtimes-test-utils/try-runtime",
"xcm-builder/try-runtime",
"xcm-executor/try-runtime",
"xcm-runtime-pezapis/try-runtime",
"xcm/try-runtime",
]
fast-runtime = []
@@ -361,3 +411,25 @@ fast-runtime = []
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
# to make it smaller, like logging for example.
on-chain-release-build = []
serde = [
"codec/serde",
"dep:serde",
"pezbp-pezkuwi-core/serde",
"pezframe-benchmarking?/serde",
"pezpallet-message-queue/serde",
"pezpallet-transaction-payment/serde",
"pezpallet-xcm/serde",
"pezsnowbridge-beacon-primitives/serde",
"pezsnowbridge-core/serde",
"pezsnowbridge-pezpallet-ethereum-client/serde",
"pezsnowbridge-pezpallet-inbound-queue/serde",
"pezsp-consensus-aura/serde",
"pezsp-core/serde",
"pezsp-runtime/serde",
"pezsp-storage/serde",
"pezsp-version/serde",
"scale-info/serde",
]
experimental = []
with-tracing = []
tuples-96 = []