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
@@ -96,11 +96,11 @@ primitive-types = { workspace = true, default-features = false, features = [
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"pez-assets-common/std",
"bizinikiwi-wasm-builder",
"codec/std",
"pez-assets-common/std",
"pezcumulus-pezpallet-aura-ext/std",
"pezcumulus-pezpallet-session-benchmarking/std",
"pezcumulus-pezpallet-teyrchain-system/std",
@@ -163,9 +163,9 @@ std = [
]
runtime-benchmarks = [
"pez-assets-common/runtime-benchmarks",
"bizinikiwi-wasm-builder?/runtime-benchmarks",
"hex-literal",
"pez-assets-common/runtime-benchmarks",
"pezcumulus-pezpallet-aura-ext/runtime-benchmarks",
"pezcumulus-pezpallet-session-benchmarking/runtime-benchmarks",
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
@@ -41,8 +41,8 @@ use super::{
TeyrchainSystem, WeightToFee, XcmpQueue,
};
use crate::{BaseDeliveryFee, FeeAssetId, TransactionByteFee};
use pez_assets_common::TrustBackedAssetsAsLocation;
use core::marker::PhantomData;
use pez_assets_common::TrustBackedAssetsAsLocation;
use pezframe_support::{
parameter_types,
traits::{
@@ -69,7 +69,7 @@ teyrchains-common = { workspace = true }
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"bizinikiwi-wasm-builder",
"codec/std",
@@ -79,7 +79,7 @@ pezcumulus-pezpallet-teyrchain-system = { workspace = true }
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"bizinikiwi-wasm-builder",
"codec/std",
@@ -79,8 +79,8 @@ pub use pezsp_runtime::BuildStorage;
pub use pezsp_runtime::{Perbill, Permill};
use pezcumulus_primitives_core::AggregateMessageOrigin; //, ClaimQueueOffset, CoreSelector};
use xcm::latest::prelude::BodyId;
use teyrchains_common::{AccountId, Signature};
use xcm::latest::prelude::BodyId;
pub type SessionHandlers = ();