Skip to content

Commit

Permalink
Allow clippy lint unused_imports for spin exports from sync module
Browse files Browse the repository at this point in the history
  • Loading branch information
SpriteOvO committed Feb 5, 2024
1 parent dfca4a8 commit 892edbd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions spdlog/src/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pub use std::sync::{

pub use arc_swap::{ArcSwap, ArcSwapOption};
pub use once_cell::sync::{Lazy, OnceCell};
#[allow(unused_imports)]
pub use spin::{
Mutex as SpinMutex, MutexGuard as SpinMutexGuard, RwLock as SpinRwLock,
RwLockReadGuard as SpinRwLockReadGuard, RwLockWriteGuard as SpinRwLockWriteGuard,
Expand Down

0 comments on commit 892edbd

Please sign in to comment.