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:
@@ -110,6 +110,7 @@ std = [
|
||||
"num-bigint/std",
|
||||
"num-integer/std",
|
||||
"num-traits/std",
|
||||
"pez-ethereum-standards/std",
|
||||
"pezframe-benchmarking?/std",
|
||||
"pezframe-support/std",
|
||||
"pezframe-system/std",
|
||||
@@ -117,6 +118,7 @@ std = [
|
||||
"pezkuwi-subxt-signer?/std",
|
||||
"pezpallet-proxy/std",
|
||||
"pezpallet-revive-fixtures?/std",
|
||||
"pezpallet-revive-uapi/std",
|
||||
"pezpallet-timestamp/std",
|
||||
"pezpallet-transaction-payment/std",
|
||||
"pezpallet-utility/std",
|
||||
@@ -147,9 +149,11 @@ runtime-benchmarks = [
|
||||
"pezframe-benchmarking/runtime-benchmarks",
|
||||
"pezframe-support/runtime-benchmarks",
|
||||
"pezframe-system/runtime-benchmarks",
|
||||
"pezkuwi-subxt-signer?/runtime-benchmarks",
|
||||
"pezpallet-balances/runtime-benchmarks",
|
||||
"pezpallet-proxy/runtime-benchmarks",
|
||||
"pezpallet-revive-fixtures",
|
||||
"pezpallet-revive-fixtures?/runtime-benchmarks",
|
||||
"pezpallet-timestamp/runtime-benchmarks",
|
||||
"pezpallet-transaction-payment/runtime-benchmarks",
|
||||
"pezpallet-utility/runtime-benchmarks",
|
||||
@@ -166,6 +170,7 @@ runtime-benchmarks = [
|
||||
"pezsp-version/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-benchmarking?/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
"pezpallet-balances/try-runtime",
|
||||
@@ -173,5 +178,13 @@ try-runtime = [
|
||||
"pezpallet-timestamp/try-runtime",
|
||||
"pezpallet-transaction-payment/try-runtime",
|
||||
"pezpallet-utility/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
"pezsp-consensus-aura?/try-runtime",
|
||||
"pezsp-consensus-babe?/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-version/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -49,3 +49,12 @@ runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pez-revive-dev-runtime/try-runtime",
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -53,3 +53,11 @@ runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -41,7 +41,13 @@ std = [
|
||||
"alloy-core",
|
||||
"anyhow",
|
||||
"hex/std",
|
||||
"pezpallet-revive-uapi/std",
|
||||
"pezsp-core",
|
||||
"pezsp-io",
|
||||
"serde_json/std",
|
||||
]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
runtime-benchmarks = [
|
||||
"pezsp-io?/runtime-benchmarks",
|
||||
]
|
||||
|
||||
@@ -72,6 +72,9 @@ pezsp-runtime = { workspace = true, default-features = true }
|
||||
runtime-benchmarks = [
|
||||
"pez-revive-dev-node/runtime-benchmarks",
|
||||
"pez-revive-dev-runtime/runtime-benchmarks",
|
||||
"pezkuwi-subxt-signer/runtime-benchmarks",
|
||||
"pezkuwi-subxt/runtime-benchmarks",
|
||||
"pezpallet-revive-fixtures/runtime-benchmarks",
|
||||
"pezpallet-revive/runtime-benchmarks",
|
||||
"pezsc-cli/runtime-benchmarks",
|
||||
"pezsc-rpc-api/runtime-benchmarks",
|
||||
@@ -81,3 +84,34 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-timestamp/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"anyhow/std",
|
||||
"codec/std",
|
||||
"hex/std",
|
||||
"log/std",
|
||||
"pezkuwi-subxt/std",
|
||||
"pezsc-cli/std",
|
||||
"pezsc-rpc-api/std",
|
||||
"pezsc-rpc/std",
|
||||
"pezsc-service/std",
|
||||
"pezsp-crypto-hashing/std",
|
||||
"pezsp-rpc/std",
|
||||
"pezsp-timestamp/std",
|
||||
"prometheus-endpoint/std",
|
||||
"rlp/std",
|
||||
"serde_json/std",
|
||||
]
|
||||
try-runtime = [
|
||||
"pez-revive-dev-node/try-runtime",
|
||||
"pez-revive-dev-runtime/try-runtime",
|
||||
"pezkuwi-subxt/try-runtime",
|
||||
"pezpallet-revive/try-runtime",
|
||||
"pezsc-cli/try-runtime",
|
||||
"pezsc-rpc-api/try-runtime",
|
||||
"pezsc-rpc/try-runtime",
|
||||
"pezsc-service/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-timestamp/try-runtime",
|
||||
]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -36,3 +36,9 @@ default = ["scale"]
|
||||
scale = ["dep:codec", "scale-info"]
|
||||
precompiles-sol-interfaces = ["alloy-core"]
|
||||
unstable-hostfn = []
|
||||
std = [
|
||||
"alloy-core?/std",
|
||||
"codec?/std",
|
||||
"scale-info?/std",
|
||||
]
|
||||
serde = []
|
||||
|
||||
Reference in New Issue
Block a user