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 80b936da22
commit 57fef835e3
568 changed files with 1465 additions and 1165 deletions
+5 -5
View File
@@ -28,15 +28,15 @@ pezsp-std = { workspace = true }
pezsp-trie = { workspace = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"pezbp-header-pez-chain/std",
"pezbp-pezkuwi-core/std",
"pezbp-teyrchains/std",
"codec/std",
"ed25519-dalek/std",
"finality-grandpa/std",
"pezbp-header-pez-chain/std",
"pezbp-pezkuwi-core/std",
"pezbp-runtime/std",
"pezbp-teyrchains/std",
"pezsp-application-crypto/std",
"pezsp-consensus-grandpa/std",
"pezsp-core/std",
@@ -47,8 +47,8 @@ std = [
runtime-benchmarks = [
"pezbp-header-pez-chain/runtime-benchmarks",
"pezbp-pezkuwi-core/runtime-benchmarks",
"pezbp-teyrchains/runtime-benchmarks",
"pezbp-runtime/runtime-benchmarks",
"pezbp-teyrchains/runtime-benchmarks",
"pezsp-consensus-grandpa/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
@@ -16,10 +16,10 @@
//! Utilities for working with test accounts.
use pezbp_header_pez_chain::{justification::JustificationVerificationContext, AuthoritySet};
use codec::Encode;
use ed25519_dalek::{Signature, SigningKey, VerifyingKey};
use finality_grandpa::voter_set::VoterSet;
use pezbp_header_pez_chain::{justification::JustificationVerificationContext, AuthoritySet};
use pezsp_consensus_grandpa::{AuthorityId, AuthorityList, AuthorityWeight, SetId};
use pezsp_runtime::RuntimeDebug;
use pezsp_std::prelude::*;
+5 -3
View File
@@ -19,11 +19,13 @@
#![warn(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
use pezbp_header_pez_chain::justification::{required_justification_precommits, GrandpaJustification};
use pezbp_pezkuwi_core::teyrchains::{ParaHash, ParaHead, ParaHeadsProof, ParaId};
use pezbp_teyrchains::teyrchain_head_storage_key_at_source;
use codec::Encode;
use pezbp_header_pez_chain::justification::{
required_justification_precommits, GrandpaJustification,
};
use pezbp_pezkuwi_core::teyrchains::{ParaHash, ParaHead, ParaHeadsProof, ParaId};
use pezbp_runtime::record_all_trie_keys;
use pezbp_teyrchains::teyrchain_head_storage_key_at_source;
use pezsp_consensus_grandpa::{AuthorityId, AuthoritySignature, AuthorityWeight, SetId};
use pezsp_runtime::traits::{Header as HeaderT, One, Zero};
use pezsp_std::prelude::*;