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 c4640269ec
commit 267fcec12d
123 changed files with 250 additions and 521 deletions
+1 -3
View File
@@ -32,6 +32,4 @@ bizinikiwi-build-script-utils = { workspace = true, default-features = true }
default = []
runtime-benchmarks = ["pezkuwi-omni-node-lib/runtime-benchmarks"]
try-runtime = ["pezkuwi-omni-node-lib/try-runtime"]
std = [
"pezkuwi-omni-node-lib/std",
]
std = ["pezkuwi-omni-node-lib/std"]
+3 -1
View File
@@ -102,7 +102,9 @@ pezcumulus-client-consensus-common = { workspace = true, default-features = true
pezcumulus-client-consensus-proposer = { workspace = true, default-features = true }
pezcumulus-client-consensus-relay-chain = { workspace = true, default-features = true }
pezcumulus-client-service = { workspace = true, default-features = true }
pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true, features = ["mock"] }
pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true, features = [
"mock",
] }
pezcumulus-primitives-aura = { workspace = true, default-features = true }
pezcumulus-primitives-core = { workspace = true, default-features = true }
pezcumulus-relay-chain-interface = { workspace = true, default-features = true }
+1 -3
View File
@@ -72,9 +72,7 @@ runtime-benchmarks = [
"xcm-pez-simulator/runtime-benchmarks",
"xcm/runtime-benchmarks",
]
std = [
"xcm-pez-simulator/std",
]
std = ["xcm-pez-simulator/std"]
try-runtime = [
"pezcumulus-pezpallet-teyrchain-system/try-runtime",
"pezcumulus-primitives-core/try-runtime",
@@ -23,14 +23,14 @@ pezkuwi-zombienet-configuration = { workspace = true }
[features]
runtime-benchmarks = [
"pezcumulus-primitives-core/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezkuwi-zombienet-sdk/runtime-benchmarks"
"pezcumulus-primitives-core/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezkuwi-zombienet-sdk/runtime-benchmarks",
]
std = [
"log/std",
"codec/std",
"pezkuwi-zombienet-configuration/std",
"pezkuwi-zombienet-sdk/std"
"log/std",
"codec/std",
"pezkuwi-zombienet-configuration/std",
"pezkuwi-zombienet-sdk/std",
]
serde = []
+17 -17
View File
@@ -33,24 +33,24 @@ rstest = { workspace = true }
[features]
zombie-ci = []
runtime-benchmarks = [
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezsc-statement-store/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
"pezsp-statement-store/runtime-benchmarks",
"pezkuwi-zombienet-orchestrator/runtime-benchmarks",
"pezkuwi-zombienet-sdk/runtime-benchmarks"
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezsc-statement-store/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
"pezsp-statement-store/runtime-benchmarks",
"pezkuwi-zombienet-orchestrator/runtime-benchmarks",
"pezkuwi-zombienet-sdk/runtime-benchmarks",
]
std = [
"anyhow/std",
"log/std",
"codec/std",
"pezcumulus-zombienet-sdk-helpers/std",
"pezkuwi-zombienet-configuration/std",
"pezkuwi-zombienet-orchestrator/std",
"pezkuwi-zombienet-sdk/std",
"pezsc-statement-store/std",
"serde/std",
"serde_json/std"
"anyhow/std",
"log/std",
"codec/std",
"pezcumulus-zombienet-sdk-helpers/std",
"pezkuwi-zombienet-configuration/std",
"pezkuwi-zombienet-orchestrator/std",
"pezkuwi-zombienet-sdk/std",
"pezsc-statement-store/std",
"serde/std",
"serde_json/std",
]
serde = []