Skip to content

bump rust 1.84.1 #1022

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.81.0"
channel = "1.84.1"
components = ["rustfmt", "clippy"]
targets = ["wasm32-unknown-unknown"]
1 change: 0 additions & 1 deletion traits/src/asset_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ pub trait AssetProcessor<AssetId, Metadata> {
#[derive(TypeInfo, Encode, Decode, CloneNoBound, EqNoBound, PartialEqNoBound, RuntimeDebugNoBound, MaxEncodedLen)]
#[codec(mel_bound(skip_type_params(StringLimit)))]
#[scale_info(skip_type_params(StringLimit))]

pub struct AssetMetadata<Balance, CustomMetadata, StringLimit: Get<u32>>
where
Balance: Clone + Debug + Eq + PartialEq,
Expand Down
2 changes: 1 addition & 1 deletion traits/src/location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub trait RelativeLocations {

impl RelativeLocations for Location {
fn sibling_parachain_general_key(para_id: u32, general_key: BoundedVec<u8, ConstU32<32>>) -> Location {
return Location::new(1, [Parachain(para_id), general_key.as_bounded_slice().into()]);
Location::new(1, [Parachain(para_id), general_key.as_bounded_slice().into()])
}
}

Expand Down