summaryrefslogtreecommitdiffstats
path: root/src/auth/types.rs
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-01-30 23:39:40 -0600
committerLibravatar bigfoot547 <[email protected]>2025-01-30 23:39:40 -0600
commit58b85cd77338bfc5a35fa39e10598cadb27eee32 (patch)
tree504f2ce93ff4ef3129b757018a3d9b47f257328b /src/auth/types.rs
parentremove dead oauth code (diff)
Remove some unused imports but not all of them
Diffstat (limited to 'src/auth/types.rs')
-rw-r--r--src/auth/types.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/auth/types.rs b/src/auth/types.rs
index c7a9ac9..348bdf8 100644
--- a/src/auth/types.rs
+++ b/src/auth/types.rs
@@ -1,12 +1,11 @@
pub mod property_map;
pub use property_map::PropertyMap;
-use std::fmt::{Debug, Formatter, Write};
+use std::fmt::{Debug, Formatter};
use chrono::{DateTime, Utc};
use multimap::MultiMap;
use oauth2::RefreshToken;
-use serde::{Deserialize, Deserializer, Serialize};
-use serde::de::{Error, SeqAccess, Visitor};
+use serde::{Deserialize, Serialize};
use uuid::Uuid;
#[derive(Debug, Serialize, Deserialize)]