diff options
Diffstat (limited to 'aero-user/src/storage/in_memory.rs')
-rw-r--r-- | aero-user/src/storage/in_memory.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aero-user/src/storage/in_memory.rs b/aero-user/src/storage/in_memory.rs index 9ef2721..5c8eb26 100644 --- a/aero-user/src/storage/in_memory.rs +++ b/aero-user/src/storage/in_memory.rs @@ -2,7 +2,7 @@ use std::collections::BTreeMap; use std::ops::Bound::{self, Excluded, Included, Unbounded}; use std::sync::RwLock; -use sodiumoxide::{hex, crypto::hash}; +use sodiumoxide::{crypto::hash, hex}; use tokio::sync::Notify; use crate::storage::*; |