fix: quick-checks CI failures - taplo format, zepter, umbrella

1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
This commit is contained in:
2026-01-26 00:39:59 +03:00
parent 4c95793329
commit 78095d125e
123 changed files with 250 additions and 521 deletions
+1 -3
View File
@@ -23,7 +23,5 @@ pezsp-wasm-interface = { workspace = true, default-features = true }
thiserror = { workspace = true }
[features]
std = [
"log/std",
]
std = ["log/std"]
serde = []
+1 -4
View File
@@ -41,10 +41,7 @@ runtime-benchmarks = [
"pezsp-state-machine/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
]
std = [
"bizinikiwi-test-runtime-client/std",
"pezsp-blockchain/std",
]
std = ["bizinikiwi-test-runtime-client/std", "pezsp-blockchain/std"]
try-runtime = [
"bizinikiwi-test-runtime-client/try-runtime",
"pezsp-api/try-runtime",
+1 -4
View File
@@ -26,7 +26,4 @@ wasm-instrument = { workspace = true, default-features = true }
[features]
default = []
std = [
"pezsc-allocator/std",
"polkavm/std",
]
std = ["pezsc-allocator/std", "polkavm/std"]
@@ -24,9 +24,5 @@ pezsc-executor-common = { workspace = true, default-features = true }
pezsp-wasm-interface = { workspace = true, default-features = true }
[features]
std = [
"log/std",
"pezsc-executor-common/std",
"polkavm/std",
]
std = ["log/std", "pezsc-executor-common/std", "polkavm/std"]
serde = []
@@ -42,8 +42,6 @@ runtime-benchmarks = [
"pezsp-runtime-interface/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
try-runtime = [
"pezsp-runtime/try-runtime",
]
try-runtime = ["pezsp-runtime/try-runtime"]
serde = []
with-tracing = []
+1 -3
View File
@@ -47,6 +47,4 @@ bandersnatch-experimental = [
]
std = []
serde = []
runtime-benchmarks = [
"pezsp-application-crypto/runtime-benchmarks",
]
runtime-benchmarks = ["pezsp-application-crypto/runtime-benchmarks"]
@@ -39,9 +39,7 @@ runtime-benchmarks = [
"pezsp-mmr-primitives/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = [
"pezsp-blockchain/std",
]
std = ["pezsp-blockchain/std"]
try-runtime = [
"pezsp-api/try-runtime",
"pezsp-blockchain/try-runtime",
+1 -3
View File
@@ -23,7 +23,5 @@ pezsp-runtime = { workspace = true, default-features = true }
[features]
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
std = []
try-runtime = [
"pezsp-runtime/try-runtime",
]
try-runtime = ["pezsp-runtime/try-runtime"]
serde = []
@@ -21,8 +21,5 @@ log = { workspace = true, default-features = true }
prometheus-endpoint = { workspace = true, default-features = true }
[features]
std = [
"log/std",
"prometheus-endpoint/std",
]
std = ["log/std", "prometheus-endpoint/std"]
serde = []
+1 -6
View File
@@ -39,10 +39,5 @@ tower-http = { workspace = true, features = ["cors"] }
[features]
runtime-benchmarks = ["pezsc-rpc-api/runtime-benchmarks"]
std = [
"log/std",
"pezsc-rpc-api/std",
"prometheus-endpoint/std",
"serde/std",
]
std = ["log/std", "pezsc-rpc-api/std", "prometheus-endpoint/std", "serde/std"]
serde = []
@@ -44,9 +44,6 @@ runtime-benchmarks = [
"pezsp-state-machine/runtime-benchmarks",
"pezsp-version/runtime-benchmarks",
]
std = [
"pezkuwi-subxt/std",
"pezsc-executor-common/std",
]
std = ["pezkuwi-subxt/std", "pezsc-executor-common/std"]
serde = []
with-tracing = []
+1 -3
View File
@@ -23,7 +23,5 @@ parking_lot = { workspace = true, default-features = true }
pezsp-core = { workspace = true, default-features = true }
[features]
std = [
"log/std",
]
std = ["log/std"]
serde = []
+1 -3
View File
@@ -21,7 +21,5 @@ thiserror = { workspace = true }
tokio = { features = ["time"], workspace = true, default-features = true }
[features]
std = [
"log/std",
]
std = ["log/std"]
serde = []
+2 -7
View File
@@ -39,12 +39,7 @@ runtime-benchmarks = [
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = [
"log/std",
"pezsc-telemetry/std",
]
try-runtime = [
"pezsp-runtime/try-runtime",
]
std = ["log/std", "pezsc-telemetry/std"]
try-runtime = ["pezsp-runtime/try-runtime"]
serde = []
with-tracing = []
+1 -4
View File
@@ -31,8 +31,5 @@ thiserror = { workspace = true }
wasm-timer = { workspace = true }
[features]
std = [
"log/std",
"pezsc-utils/std",
]
std = ["log/std", "pezsc-utils/std"]
serde = []
@@ -32,14 +32,6 @@ runtime-benchmarks = [
"pezsp-blockchain/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = [
"log/std",
"pezsp-blockchain/std",
"pezsp-core/std",
"pezsp-runtime/std",
]
try-runtime = [
"pezsp-blockchain/try-runtime",
"pezsp-runtime/try-runtime",
]
std = ["log/std", "pezsp-blockchain/std", "pezsp-core/std", "pezsp-runtime/std"]
try-runtime = ["pezsp-blockchain/try-runtime", "pezsp-runtime/try-runtime"]
serde = []
+1 -4
View File
@@ -28,8 +28,5 @@ tokio-test = { workspace = true }
[features]
default = ["metered"]
metered = []
std = [
"log/std",
"pezsp-arithmetic/std",
]
std = ["log/std", "pezsp-arithmetic/std"]
serde = []