mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-17 03:05:42 +00:00
Remove BoundedVec half-impls in xcm (#6636)
* Replace sp-core dependency with more primitive crates * Remove BoundedVec half-impls in xcm * Fixes * Bump bounded-collections * Address review comments * Bump bounded-collections * Fix benchmarks * Fixes * Fixes * cargo fmt * Fix tests * Update url * Bump url to 2.3.1 * Bump anyhow * Use bounded-collections in pallet-xcm * Update substrate
This commit is contained in:
@@ -18,9 +18,9 @@
|
||||
|
||||
use super::{BodyId, BodyPart, Junctions, MultiLocation, NetworkId};
|
||||
use crate::v3::Junction as NewJunction;
|
||||
use bounded_collections::{ConstU32, WeakBoundedVec};
|
||||
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
|
||||
use scale_info::TypeInfo;
|
||||
use sp_core::{bounded::WeakBoundedVec, ConstU32};
|
||||
|
||||
/// A single item in a path to describe the relative location of a consensus system.
|
||||
///
|
||||
|
||||
@@ -59,11 +59,11 @@ use super::{
|
||||
DoubleEncoded, GetWeight,
|
||||
};
|
||||
use alloc::{vec, vec::Vec};
|
||||
use bounded_collections::{ConstU32, WeakBoundedVec};
|
||||
use core::{fmt::Debug, result};
|
||||
use derivative::Derivative;
|
||||
use parity_scale_codec::{self, Decode, Encode, MaxEncodedLen};
|
||||
use scale_info::TypeInfo;
|
||||
use sp_core::{bounded::WeakBoundedVec, ConstU32};
|
||||
|
||||
mod junction;
|
||||
mod multiasset;
|
||||
|
||||
Reference in New Issue
Block a user