From 6b0fe5bf638079d535e70c3c91e78fe35a5d2a2f Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 26 Oct 2024 05:29:26 +0000 Subject: group imports with rustfmt --- azalea-core/src/position.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'azalea-core/src/position.rs') diff --git a/azalea-core/src/position.rs b/azalea-core/src/position.rs index d87e21a7..de0276a3 100755 --- a/azalea-core/src/position.rs +++ b/azalea-core/src/position.rs @@ -3,10 +3,6 @@ //! The most common ones are [`Vec3`] and [`BlockPos`], which are usually used //! for entity positions and block positions, respectively. -use crate::resource_location::ResourceLocation; -use azalea_buf::{BufReadError, McBuf, McBufReadable, McBufWritable}; -#[cfg(feature = "serde")] -use serde::{Deserialize, Serialize}; use std::{ fmt, hash::Hash, @@ -15,6 +11,12 @@ use std::{ str::FromStr, }; +use azalea_buf::{BufReadError, McBuf, McBufReadable, McBufWritable}; +#[cfg(feature = "serde")] +use serde::{Deserialize, Serialize}; + +use crate::resource_location::ResourceLocation; + macro_rules! vec3_impl { ($name:ident, $type:ty) => { impl $name { -- cgit v1.2.3