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:
+52
@@ -83,3 +83,55 @@ runtime-benchmarks = [
|
||||
"xcm-executor/runtime-benchmarks",
|
||||
"xcm/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"asset-hub-pezkuwichain-runtime/std",
|
||||
"codec/std",
|
||||
"emulated-integration-tests-common/std",
|
||||
"pezbp-asset-hub-pezkuwichain/std",
|
||||
"pezcumulus-pezpallet-xcmp-queue/std",
|
||||
"pezframe-support/std",
|
||||
"pezkuwichain-system-emulated-network/std",
|
||||
"pezkuwichain-zagros-system-emulated-network/std",
|
||||
"pezpallet-asset-conversion/std",
|
||||
"pezpallet-assets/std",
|
||||
"pezpallet-balances/std",
|
||||
"pezpallet-bridge-messages/std",
|
||||
"pezpallet-xcm/std",
|
||||
"pezsnowbridge-inbound-queue-primitives/std",
|
||||
"pezsnowbridge-outbound-queue-primitives/std",
|
||||
"pezsnowbridge-pezpallet-outbound-queue/std",
|
||||
"pezsnowbridge-pezpallet-system/std",
|
||||
"pezsp-core/std",
|
||||
"pezsp-runtime/std",
|
||||
"scale-info/std",
|
||||
"xcm-builder/std",
|
||||
"xcm-executor/std",
|
||||
"xcm/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"asset-hub-pezkuwichain-runtime/try-runtime",
|
||||
"emulated-integration-tests-common/try-runtime",
|
||||
"pezbp-asset-hub-pezkuwichain/try-runtime",
|
||||
"pezcumulus-pezpallet-xcmp-queue/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
"pezpallet-asset-conversion/try-runtime",
|
||||
"pezpallet-assets/try-runtime",
|
||||
"pezpallet-balances/try-runtime",
|
||||
"pezpallet-bridge-messages/try-runtime",
|
||||
"pezpallet-message-queue/try-runtime",
|
||||
"pezpallet-xcm/try-runtime",
|
||||
"pezsnowbridge-inbound-queue-primitives/try-runtime",
|
||||
"pezsnowbridge-outbound-queue-primitives/try-runtime",
|
||||
"pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime",
|
||||
"pezsnowbridge-pezpallet-outbound-queue/try-runtime",
|
||||
"pezsnowbridge-pezpallet-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"testnet-teyrchains-constants/try-runtime",
|
||||
"teyrchains-common/try-runtime",
|
||||
"xcm-builder/try-runtime",
|
||||
"xcm-executor/try-runtime",
|
||||
"xcm/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
tuples-96 = []
|
||||
|
||||
+70
@@ -101,3 +101,73 @@ runtime-benchmarks = [
|
||||
"xcm-executor/runtime-benchmarks",
|
||||
"xcm/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"emulated-integration-tests-common/std",
|
||||
"pezbp-asset-hub-zagros/std",
|
||||
"pezbridge-hub-common/std",
|
||||
"pezcumulus-pezpallet-teyrchain-system/std",
|
||||
"pezcumulus-pezpallet-xcmp-queue/std",
|
||||
"pezframe-support/std",
|
||||
"pezkuwichain-zagros-system-emulated-network/std",
|
||||
"pezpallet-asset-conversion/std",
|
||||
"pezpallet-assets/std",
|
||||
"pezpallet-balances/std",
|
||||
"pezpallet-bridge-messages/std",
|
||||
"pezpallet-bridge-relayers/std",
|
||||
"pezpallet-xcm/std",
|
||||
"pezsnowbridge-core/std",
|
||||
"pezsnowbridge-inbound-queue-primitives/std",
|
||||
"pezsnowbridge-outbound-queue-primitives/std",
|
||||
"pezsnowbridge-pezpallet-inbound-queue-fixtures/std",
|
||||
"pezsnowbridge-pezpallet-inbound-queue-v2/std",
|
||||
"pezsnowbridge-pezpallet-inbound-queue/std",
|
||||
"pezsnowbridge-pezpallet-outbound-queue-v2/std",
|
||||
"pezsnowbridge-pezpallet-outbound-queue/std",
|
||||
"pezsnowbridge-pezpallet-system-v2/std",
|
||||
"pezsnowbridge-pezpallet-system/std",
|
||||
"pezsp-core/std",
|
||||
"pezsp-io/std",
|
||||
"pezsp-runtime/std",
|
||||
"scale-info/std",
|
||||
"xcm-builder/std",
|
||||
"xcm-executor/std",
|
||||
"xcm/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"asset-hub-zagros-runtime/try-runtime",
|
||||
"emulated-integration-tests-common/try-runtime",
|
||||
"pezbp-asset-hub-zagros/try-runtime",
|
||||
"pezbridge-hub-common/try-runtime",
|
||||
"pezbridge-hub-zagros-runtime/try-runtime",
|
||||
"pezcumulus-pezpallet-teyrchain-system/try-runtime",
|
||||
"pezcumulus-pezpallet-xcmp-queue/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
"pezpallet-asset-conversion/try-runtime",
|
||||
"pezpallet-assets/try-runtime",
|
||||
"pezpallet-balances/try-runtime",
|
||||
"pezpallet-bridge-messages/try-runtime",
|
||||
"pezpallet-bridge-relayers/try-runtime",
|
||||
"pezpallet-message-queue/try-runtime",
|
||||
"pezpallet-xcm/try-runtime",
|
||||
"pezsnowbridge-core/try-runtime",
|
||||
"pezsnowbridge-inbound-queue-primitives/try-runtime",
|
||||
"pezsnowbridge-outbound-queue-primitives/try-runtime",
|
||||
"pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime",
|
||||
"pezsnowbridge-pezpallet-inbound-queue-v2/try-runtime",
|
||||
"pezsnowbridge-pezpallet-inbound-queue/try-runtime",
|
||||
"pezsnowbridge-pezpallet-outbound-queue-v2/try-runtime",
|
||||
"pezsnowbridge-pezpallet-outbound-queue/try-runtime",
|
||||
"pezsnowbridge-pezpallet-system-v2/try-runtime",
|
||||
"pezsnowbridge-pezpallet-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"testnet-teyrchains-constants/try-runtime",
|
||||
"teyrchains-common/try-runtime",
|
||||
"xcm-builder/try-runtime",
|
||||
"xcm-executor/try-runtime",
|
||||
"xcm/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
Reference in New Issue
Block a user