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-buf/src/read.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'azalea-buf/src/read.rs') diff --git a/azalea-buf/src/read.rs b/azalea-buf/src/read.rs index 882e2bce..8e406acb 100755 --- a/azalea-buf/src/read.rs +++ b/azalea-buf/src/read.rs @@ -1,14 +1,16 @@ -use super::{UnsizedByteArray, MAX_STRING_LENGTH}; -use byteorder::{ReadBytesExt, BE}; use std::{ backtrace::Backtrace, collections::HashMap, hash::Hash, io::{Cursor, Read}, }; + +use byteorder::{ReadBytesExt, BE}; use thiserror::Error; use tracing::warn; +use super::{UnsizedByteArray, MAX_STRING_LENGTH}; + #[derive(Error, Debug)] pub enum BufReadError { #[error("Invalid VarInt")] -- cgit v1.2.3