diff options
| author | mat <git@matdoes.dev> | 2025-05-30 14:44:48 -1300 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-05-30 14:44:48 -1300 |
| commit | e37524899eef8a0034faee35cef4bbf1ba779a7d (patch) | |
| tree | 5afe343086db2a9ebc78fe0a6987b9325286cc66 /azalea-auth/src/cache.rs | |
| parent | ae4b1e85e669bc882d158509ef1eda46c6b2a72e (diff) | |
| download | azalea-drasl-e37524899eef8a0034faee35cef4bbf1ba779a7d.tar.xz | |
formatting: merge imports
Diffstat (limited to 'azalea-auth/src/cache.rs')
| -rw-r--r-- | azalea-auth/src/cache.rs | 14 |
1 files changed, 9 insertions, 5 deletions
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)] |
