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
+10
View File
@@ -64,6 +64,7 @@ std = [
"pezpallet-bags-list/std",
"pezpallet-balances/std",
"pezpallet-session/std",
"pezpallet-staking-reward-curve/std",
"pezpallet-timestamp/std",
"pezsp-application-crypto/std",
"pezsp-io/std",
@@ -85,6 +86,7 @@ runtime-benchmarks = [
"pezpallet-session/runtime-benchmarks",
"pezpallet-staking-reward-curve/runtime-benchmarks",
"pezpallet-timestamp/runtime-benchmarks",
"pezsp-application-crypto/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-npos-elections/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
@@ -92,6 +94,7 @@ runtime-benchmarks = [
"rand_chacha",
]
try-runtime = [
"pezframe-benchmarking?/try-runtime",
"pezframe-election-provider-support/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
@@ -99,6 +102,13 @@ try-runtime = [
"pezpallet-bags-list/try-runtime",
"pezpallet-balances/try-runtime",
"pezpallet-session/try-runtime",
"pezpallet-staking-reward-curve/try-runtime",
"pezpallet-timestamp/try-runtime",
"pezsp-npos-elections/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-staking/try-runtime",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []
@@ -29,3 +29,8 @@ pezsp-runtime = { workspace = true, default-features = true }
[features]
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
std = []
try-runtime = [
"pezsp-runtime/try-runtime",
]
serde = []
@@ -22,3 +22,4 @@ pezsp-arithmetic = { workspace = true }
[features]
default = ["std"]
std = ["log/std", "pezsp-arithmetic/std"]
serde = []
@@ -28,3 +28,4 @@ runtime-benchmarks = [
"pezsp-api/runtime-benchmarks",
"pezsp-staking/runtime-benchmarks",
]
serde = []