From dcbd690f21665e22ea250024a1aa85dec34e6c9e Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 15 Dec 2025 11:14:40 +0930 Subject: sort derives with cargo sort-derives might add to ci later, unsure how to do it without adding significant friction for contributors though --- azalea-inventory/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-inventory/src/lib.rs') diff --git a/azalea-inventory/src/lib.rs b/azalea-inventory/src/lib.rs index e95d9ee1..9c4b62bb 100644 --- a/azalea-inventory/src/lib.rs +++ b/azalea-inventory/src/lib.rs @@ -17,7 +17,7 @@ pub use slot::{DataComponentPatch, ItemStack, ItemStackData}; // https://github.com/rust-lang/rust/issues/61415 /// A fixed-size list of [`ItemStack`]s. -#[derive(Debug, Clone)] +#[derive(Clone, Debug)] pub struct SlotList([ItemStack; N]); impl Deref for SlotList { type Target = [ItemStack; N]; -- cgit v1.2.3