From e37524899eef8a0034faee35cef4bbf1ba779a7d Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 30 May 2025 14:44:48 -1300 Subject: formatting: merge imports --- azalea-auth/src/cache.rs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'azalea-auth/src') diff --git a/azalea-auth/src/cache.rs b/azalea-auth/src/cache.rs index 9207c46e..5b230f7d 100644 --- a/azalea-auth/src/cache.rs +++ b/azalea-auth/src/cache.rs @@ -1,13 +1,17 @@ //! Cache auth information -use std::io; -use std::path::Path; -use std::time::{SystemTime, UNIX_EPOCH}; +use std::{ + io, + path::Path, + time::{SystemTime, UNIX_EPOCH}, +}; use serde::{Deserialize, Serialize}; use thiserror::Error; -use tokio::fs::{self, File}; -use tokio::io::{AsyncReadExt, AsyncWriteExt}; +use tokio::{ + fs::{self, File}, + io::{AsyncReadExt, AsyncWriteExt}, +}; use tracing::{debug, trace}; #[derive(Debug, Error)] -- cgit v1.2.3