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
+15
View File
@@ -62,11 +62,16 @@ default = ["std"]
# This crate does not have `no_std` support, we just require this for tests
std = [
"bizinikiwi-test-runtime/std",
"pezsc-executor-common/std",
"pezsc-executor-polkavm/std",
"pezsc-executor-wasmtime/std",
"pezsc-runtime-test/std",
"pezsc-tracing/std",
"pezsp-api/std",
"pezsp-core/std",
"pezsp-externalities/std",
"pezsp-io/std",
"pezsp-panic-handler/std",
"pezsp-runtime-interface/std",
"pezsp-runtime/std",
"pezsp-state-machine/std",
@@ -89,3 +94,13 @@ runtime-benchmarks = [
"pezsp-trie/runtime-benchmarks",
"pezsp-version/runtime-benchmarks",
]
try-runtime = [
"bizinikiwi-test-runtime/try-runtime",
"pezsc-runtime-test/try-runtime",
"pezsc-tracing/try-runtime",
"pezsp-api/try-runtime",
"pezsp-runtime/try-runtime",
"pezsp-version/try-runtime",
]
serde = []
with-tracing = []