style: set group_imports rustfmt option

This commit is contained in:
2025-03-24 16:41:16 -04:00
parent 1eca3ab5a4
commit 4da563ae0e
24 changed files with 95 additions and 63 deletions

View File

@@ -13,6 +13,13 @@ mod replay;
#[cfg(feature = "matrix")]
mod matrix;
use std::{
collections::HashMap,
env,
fs::{OpenOptions, read_to_string},
sync::Arc,
};
use anyhow::Context;
use arguments::Arguments;
use azalea::{
@@ -31,12 +38,6 @@ use hacks::HacksPlugin;
use log::debug;
use mlua::{Function, Lua, Table};
use replay::{plugin::RecordPlugin, recorder::Recorder};
use std::{
collections::HashMap,
env,
fs::{OpenOptions, read_to_string},
sync::Arc,
};
#[cfg(feature = "mimalloc")]
#[global_allocator]