diff options
Diffstat (limited to 'azalea-auth')
| -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)] |
