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:
@@ -53,3 +53,12 @@ runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pez-minimal-template-runtime/try-runtime",
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -39,3 +39,11 @@ runtime-benchmarks = [
|
||||
"pezframe-support/runtime-benchmarks",
|
||||
"pezframe-system/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-benchmarking?/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -51,3 +51,11 @@ runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezpallet-minimal-template/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezpallet-minimal-template/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -69,7 +69,25 @@ bizinikiwi-build-script-utils = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = ["pez-solochain-template-runtime/std"]
|
||||
std = [
|
||||
"bizinikiwi-frame-rpc-system/std",
|
||||
"pez-solochain-template-runtime/std",
|
||||
"pezframe-benchmarking-cli/std",
|
||||
"pezpallet-transaction-payment-rpc/std",
|
||||
"pezsc-basic-authorship/std",
|
||||
"pezsc-cli/std",
|
||||
"pezsc-client-api/std",
|
||||
"pezsc-consensus-aura/std",
|
||||
"pezsc-consensus-grandpa/std",
|
||||
"pezsc-consensus/std",
|
||||
"pezsc-network/std",
|
||||
"pezsc-offchain/std",
|
||||
"pezsc-service/std",
|
||||
"pezsc-telemetry/std",
|
||||
"pezsc-transaction-pool-api/std",
|
||||
"pezsc-transaction-pool/std",
|
||||
"pezsp-blockchain/std",
|
||||
]
|
||||
# Storage benchmarking support (optional)
|
||||
storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"]
|
||||
# Dependencies that are only required if runtime benchmarking should be build.
|
||||
@@ -107,8 +125,35 @@ runtime-benchmarks = [
|
||||
# Enable features that allow the runtime to be tried and debugged. Name might be subject to change
|
||||
# in the near future.
|
||||
try-runtime = [
|
||||
"bizinikiwi-frame-rpc-system/try-runtime",
|
||||
"pez-solochain-template-runtime/try-runtime",
|
||||
"pezframe-benchmarking-cli/try-runtime",
|
||||
"pezframe-metadata-hash-extension/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
"pezpallet-transaction-payment-rpc/try-runtime",
|
||||
"pezpallet-transaction-payment/try-runtime",
|
||||
"pezsc-basic-authorship/try-runtime",
|
||||
"pezsc-cli/try-runtime",
|
||||
"pezsc-client-api/try-runtime",
|
||||
"pezsc-consensus-aura/try-runtime",
|
||||
"pezsc-consensus-grandpa/try-runtime",
|
||||
"pezsc-consensus/try-runtime",
|
||||
"pezsc-executor/try-runtime",
|
||||
"pezsc-network/try-runtime",
|
||||
"pezsc-offchain/try-runtime",
|
||||
"pezsc-service/try-runtime",
|
||||
"pezsc-transaction-pool-api/try-runtime",
|
||||
"pezsc-transaction-pool/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-block-builder/try-runtime",
|
||||
"pezsp-blockchain/try-runtime",
|
||||
"pezsp-consensus-aura/try-runtime",
|
||||
"pezsp-genesis-builder/try-runtime",
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-keyring/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-timestamp/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -50,7 +50,12 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-benchmarking?/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -72,6 +72,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features
|
||||
default = ["std"]
|
||||
std = [
|
||||
"bizinikiwi-wasm-builder",
|
||||
"bizinikiwi-wasm-builder?/std",
|
||||
"codec/std",
|
||||
"pezframe-benchmarking?/std",
|
||||
"pezframe-executive/std",
|
||||
@@ -138,8 +139,11 @@ runtime-benchmarks = [
|
||||
"pezsp-version/runtime-benchmarks",
|
||||
]
|
||||
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",
|
||||
"pezpallet-aura/try-runtime",
|
||||
@@ -148,8 +152,20 @@ try-runtime = [
|
||||
"pezpallet-sudo/try-runtime",
|
||||
"pezpallet-template/try-runtime",
|
||||
"pezpallet-timestamp/try-runtime",
|
||||
"pezpallet-transaction-payment-rpc-runtime-api/try-runtime",
|
||||
"pezpallet-transaction-payment/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-block-builder/try-runtime",
|
||||
"pezsp-consensus-aura/try-runtime",
|
||||
"pezsp-consensus-grandpa/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",
|
||||
]
|
||||
|
||||
# Enable the metadata hash generation.
|
||||
@@ -164,3 +180,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"]
|
||||
# A convenience feature for enabling things when doing a build
|
||||
# for an on-chain release.
|
||||
on-chain-release-build = ["metadata-hash", "pezsp-api/disable-logging"]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -44,8 +44,10 @@ pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
|
||||
default = ["std"]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezframe-benchmarking-cli?/std",
|
||||
"pezkuwi-sdk/std",
|
||||
"pezsp-runtime/std",
|
||||
"prometheus-endpoint/std",
|
||||
"teyrchain-template-runtime/std",
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
@@ -56,7 +58,12 @@ runtime-benchmarks = [
|
||||
]
|
||||
storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"]
|
||||
try-runtime = [
|
||||
"pezframe-benchmarking-cli?/try-runtime",
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"teyrchain-template-runtime/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -46,3 +46,6 @@ try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
"pezframe/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -96,6 +96,7 @@ docify = { workspace = true }
|
||||
default = ["std"]
|
||||
std = [
|
||||
"bizinikiwi-wasm-builder",
|
||||
"bizinikiwi-wasm-builder?/std",
|
||||
"codec/std",
|
||||
"log/std",
|
||||
"pezcumulus-pezpallet-teyrchain-system/std",
|
||||
@@ -136,3 +137,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"]
|
||||
# A convenience feature for enabling things when doing a build
|
||||
# for an on-chain release.
|
||||
on-chain-release-build = ["metadata-hash"]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -18,3 +18,10 @@ tokio = { workspace = true, features = ["rt-multi-thread"] }
|
||||
|
||||
[features]
|
||||
zombienet = []
|
||||
std = [
|
||||
"anyhow/std",
|
||||
"pezkuwi-zombienet-sdk/std",
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"pezkuwi-zombienet-sdk/runtime-benchmarks",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user