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:
@@ -31,10 +31,10 @@ pezsp-std = { workspace = true }
|
||||
xcm = { workspace = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
default = [ "std" ]
|
||||
std = [
|
||||
"pezbp-messages/std",
|
||||
"codec/std",
|
||||
"pezbp-messages/std",
|
||||
"pezbp-runtime/std",
|
||||
"pezframe-support/std",
|
||||
"pezsp-core/std",
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
|
||||
//! Defines structures related to calls of the `pezpallet-xcm-bridge-hub` pezpallet.
|
||||
|
||||
use pezbp_messages::MessageNonce;
|
||||
use codec::{Decode, Encode};
|
||||
use pezbp_messages::MessageNonce;
|
||||
use pezsp_std::boxed::Box;
|
||||
use scale_info::TypeInfo;
|
||||
use xcm::prelude::VersionedInteriorLocation;
|
||||
|
||||
@@ -19,9 +19,9 @@
|
||||
#![warn(missing_docs)]
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
use pezbp_messages::LaneIdType;
|
||||
pub use call_info::XcmBridgeHubCall;
|
||||
use codec::{Decode, DecodeWithMemTracking, Encode, MaxEncodedLen};
|
||||
use pezbp_messages::LaneIdType;
|
||||
use pezbp_runtime::{AccountIdOf, BalanceOf, Chain};
|
||||
use pezframe_support::{
|
||||
ensure, pezsp_runtime::RuntimeDebug, CloneNoBound, PalletError, PartialEqNoBound,
|
||||
|
||||
Reference in New Issue
Block a user