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:
@@ -155,6 +155,7 @@ runtime-benchmarks = [
|
||||
"pezsc-consensus-manual-seal/runtime-benchmarks",
|
||||
"pezsc-consensus/runtime-benchmarks",
|
||||
"pezsc-executor/runtime-benchmarks",
|
||||
"pezsc-keystore/runtime-benchmarks",
|
||||
"pezsc-network-statement/runtime-benchmarks",
|
||||
"pezsc-network-sync/runtime-benchmarks",
|
||||
"pezsc-network/runtime-benchmarks",
|
||||
@@ -183,10 +184,110 @@ runtime-benchmarks = [
|
||||
"teyrchains-common/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"bizinikiwi-frame-rpc-system/try-runtime",
|
||||
"bizinikiwi-state-trie-migration-rpc/try-runtime",
|
||||
"pezcumulus-client-bootnodes/try-runtime",
|
||||
"pezcumulus-client-cli/try-runtime",
|
||||
"pezcumulus-client-collator/try-runtime",
|
||||
"pezcumulus-client-consensus-aura/try-runtime",
|
||||
"pezcumulus-client-consensus-common/try-runtime",
|
||||
"pezcumulus-client-consensus-proposer/try-runtime",
|
||||
"pezcumulus-client-consensus-relay-chain/try-runtime",
|
||||
"pezcumulus-client-service/try-runtime",
|
||||
"pezcumulus-client-teyrchain-inherent/try-runtime",
|
||||
"pezcumulus-primitives-core/try-runtime",
|
||||
"pezcumulus-test-runtime/try-runtime",
|
||||
"pezframe-benchmarking-cli/try-runtime",
|
||||
"pezframe-benchmarking?/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-try-runtime/try-runtime",
|
||||
"pezkuwi-cli/try-runtime",
|
||||
"pezkuwi-primitives/try-runtime",
|
||||
"pezpallet-transaction-payment-rpc-runtime-api/try-runtime",
|
||||
"pezpallet-transaction-payment-rpc/try-runtime",
|
||||
"pezpallet-transaction-payment/try-runtime",
|
||||
"pezsc-basic-authorship/try-runtime",
|
||||
"pezsc-chain-spec/try-runtime",
|
||||
"pezsc-cli/try-runtime",
|
||||
"pezsc-client-api/try-runtime",
|
||||
"pezsc-client-db/try-runtime",
|
||||
"pezsc-consensus-aura/try-runtime",
|
||||
"pezsc-consensus-manual-seal/try-runtime",
|
||||
"pezsc-consensus/try-runtime",
|
||||
"pezsc-executor/try-runtime",
|
||||
"pezsc-network-statement/try-runtime",
|
||||
"pezsc-network-sync/try-runtime",
|
||||
"pezsc-network/try-runtime",
|
||||
"pezsc-offchain/try-runtime",
|
||||
"pezsc-rpc/try-runtime",
|
||||
"pezsc-service/try-runtime",
|
||||
"pezsc-statement-store/try-runtime",
|
||||
"pezsc-sysinfo/try-runtime",
|
||||
"pezsc-tracing/try-runtime",
|
||||
"pezsc-transaction-pool-api/try-runtime",
|
||||
"pezsc-transaction-pool/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-block-builder/try-runtime",
|
||||
"pezsp-consensus-aura/try-runtime",
|
||||
"pezsp-consensus/try-runtime",
|
||||
"pezsp-genesis-builder/try-runtime",
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-offchain/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-session/try-runtime",
|
||||
"pezsp-statement-store/try-runtime",
|
||||
"pezsp-timestamp/try-runtime",
|
||||
"pezsp-transaction-pool/try-runtime",
|
||||
"pezsp-version/try-runtime",
|
||||
"teyrchains-common/try-runtime",
|
||||
]
|
||||
std = [
|
||||
"bizinikiwi-frame-rpc-system/std",
|
||||
"bizinikiwi-state-trie-migration-rpc/std",
|
||||
"chain-spec-builder/std",
|
||||
"log/std",
|
||||
"pezcumulus-client-bootnodes/std",
|
||||
"pezcumulus-client-cli/std",
|
||||
"pezcumulus-client-collator/std",
|
||||
"pezcumulus-client-consensus-aura/std",
|
||||
"pezcumulus-client-consensus-common/std",
|
||||
"pezcumulus-client-consensus-proposer/std",
|
||||
"pezcumulus-client-consensus-relay-chain/std",
|
||||
"pezcumulus-client-service/std",
|
||||
"pezcumulus-client-teyrchain-inherent/std",
|
||||
"pezcumulus-relay-chain-interface/std",
|
||||
"pezframe-benchmarking-cli/std",
|
||||
"pezkuwi-cli/std",
|
||||
"pezpallet-transaction-payment-rpc/std",
|
||||
"pezsc-basic-authorship/std",
|
||||
"pezsc-chain-spec/std",
|
||||
"pezsc-cli/std",
|
||||
"pezsc-client-api/std",
|
||||
"pezsc-client-db/std",
|
||||
"pezsc-consensus-aura/std",
|
||||
"pezsc-consensus-manual-seal/std",
|
||||
"pezsc-consensus/std",
|
||||
"pezsc-keystore/std",
|
||||
"pezsc-network-statement/std",
|
||||
"pezsc-network-sync/std",
|
||||
"pezsc-network/std",
|
||||
"pezsc-offchain/std",
|
||||
"pezsc-rpc/std",
|
||||
"pezsc-runtime-utilities/std",
|
||||
"pezsc-service/std",
|
||||
"pezsc-statement-store/std",
|
||||
"pezsc-storage-monitor/std",
|
||||
"pezsc-sysinfo/std",
|
||||
"pezsc-telemetry/std",
|
||||
"pezsc-tracing/std",
|
||||
"pezsc-transaction-pool-api/std",
|
||||
"pezsc-transaction-pool/std",
|
||||
"pezsp-consensus/std",
|
||||
"pezsp-genesis-builder/std",
|
||||
"pezsp-runtime/std",
|
||||
"prometheus-endpoint/std",
|
||||
"scale-info/std",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
tuples-96 = []
|
||||
|
||||
Reference in New Issue
Block a user