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:
@@ -23,6 +23,6 @@ pezkuwi-zombienet-configuration = { workspace = true }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = [
|
||||
"pezcumulus-primitives-core/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezcumulus-primitives-core/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
]
|
||||
|
||||
@@ -7,15 +7,6 @@ use codec::{Compact, Decode};
|
||||
use futures::stream::StreamExt;
|
||||
use pezcumulus_primitives_core::{relay_chain, rpsr_digest::RPSR_CONSENSUS_ID};
|
||||
use pezkuwi_primitives::{CandidateReceiptV2, Id as ParaId};
|
||||
use std::{
|
||||
cmp::max,
|
||||
collections::{HashMap, HashSet},
|
||||
ops::Range,
|
||||
};
|
||||
use tokio::{
|
||||
join,
|
||||
time::{sleep, Duration},
|
||||
};
|
||||
use pezkuwi_zombienet_sdk::subxt::{
|
||||
self,
|
||||
blocks::Block,
|
||||
@@ -26,6 +17,15 @@ use pezkuwi_zombienet_sdk::subxt::{
|
||||
utils::H256,
|
||||
OnlineClient, PezkuwiConfig,
|
||||
};
|
||||
use std::{
|
||||
cmp::max,
|
||||
collections::{HashMap, HashSet},
|
||||
ops::Range,
|
||||
};
|
||||
use tokio::{
|
||||
join,
|
||||
time::{sleep, Duration},
|
||||
};
|
||||
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
tx_helper::{ChainUpgrade, RuntimeUpgradeOptions},
|
||||
|
||||
Reference in New Issue
Block a user