fix(ci): resolve all quick-checks failures

- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
This commit is contained in:
2026-01-04 17:21:57 +03:00
parent 933f08e282
commit 479010094e
574 changed files with 1465 additions and 2447 deletions
+2 -2
View File
@@ -63,8 +63,8 @@ pezsp-tracing = { workspace = true, default-features = true }
tempfile = { workspace = true }
[features]
default = ["rocksdb"]
rocksdb = ["pezsc-client-db/rocksdb"]
default = [ "rocksdb" ]
rocksdb = [ "pezsc-client-db/rocksdb" ]
runtime-benchmarks = [
"pezsc-client-api/runtime-benchmarks",
"pezsc-client-db/runtime-benchmarks",
+1 -1
View File
@@ -68,4 +68,4 @@ runtime-benchmarks = [
"pezsp-state-machine/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
]
rocksdb = ["kvdb-rocksdb"]
rocksdb = [ "kvdb-rocksdb" ]
+1 -1
View File
@@ -58,7 +58,7 @@ tracing-subscriber = { workspace = true }
wat = { workspace = true }
[features]
default = ["std"]
default = [ "std" ]
# This crate does not have `no_std` support, we just require this for tests
std = [
"bizinikiwi-test-runtime/std",
@@ -27,7 +27,7 @@ pezsp-runtime-interface = { workspace = true }
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"bizinikiwi-wasm-builder",
"pezsp-core/std",
+1 -1
View File
@@ -21,4 +21,4 @@ codec = { features = ["derive"], workspace = true, default-features = true }
pezsp-runtime = { workspace = true, default-features = true }
[features]
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks" ]
+1 -1
View File
@@ -38,4 +38,4 @@ tower = { workspace = true, features = ["util"] }
tower-http = { workspace = true, features = ["cors"] }
[features]
runtime-benchmarks = ["pezsc-rpc-api/runtime-benchmarks"]
runtime-benchmarks = [ "pezsc-rpc-api/runtime-benchmarks" ]
+2 -2
View File
@@ -84,10 +84,10 @@ bizinikiwi-test-runtime = { workspace = true }
bizinikiwi-test-runtime-client = { workspace = true }
[features]
default = ["rocksdb"]
default = [ "rocksdb" ]
# The RocksDB feature activates the RocksDB database backend. If it is not activated, and you pass
# a path to a database, an error will be produced at runtime.
rocksdb = ["pezsc-client-db/rocksdb"]
rocksdb = [ "pezsc-client-db/rocksdb" ]
runtime-benchmarks = [
"bizinikiwi-test-runtime-client/runtime-benchmarks",
"bizinikiwi-test-runtime/runtime-benchmarks",
@@ -20,13 +20,13 @@
//! across integration tests for transaction pool.
use anyhow::anyhow;
use std::time::SystemTime;
use tracing_subscriber::EnvFilter;
use txtesttool::scenario::{ChainType, ScenarioBuilder};
use pezkuwi_zombienet_sdk::{
pezkuwi_subxt::BizinikiwConfig, GlobalSettingsBuilder, LocalFileSystem, Network, NetworkConfig,
NetworkConfigBuilder, NetworkConfigExt, WithRelaychain,
};
use std::time::SystemTime;
use tracing_subscriber::EnvFilter;
use txtesttool::scenario::{ChainType, ScenarioBuilder};
/// Bizinikiwi configuration for zombienet tests - based on BizinikiwConfig
pub type BizinikiwiConfig = BizinikiwConfig;
@@ -23,13 +23,13 @@
use crate::zombienet::{BlockSubscriptionType, NetworkSpawner, ScenarioBuilderSharedParams};
use pezcumulus_zombienet_sdk_helpers::create_assign_core_call;
use serde_json::json;
use txtesttool::{execution_log::ExecutionLog, scenario::ScenarioBuilder};
use pezkuwi_zombienet_sdk::{
pezkuwi_subxt::{OnlineClient, PezkuwiConfig},
pezkuwi_subxt_signer::sr25519::dev,
NetworkConfigBuilder,
};
use serde_json::json;
use txtesttool::{execution_log::ExecutionLog, scenario::ScenarioBuilder};
#[tokio::test(flavor = "multi_thread")]
#[ignore]
+1 -1
View File
@@ -26,5 +26,5 @@ prometheus = { workspace = true }
tokio-test = { workspace = true }
[features]
default = ["metered"]
default = [ "metered" ]
metered = []