1#[cfg(feature = "smol")] 2pub use smol::lock::{Mutex, MutexGuard, OnceCell, RwLock}; 3 4#[cfg(feature = "tokio")] 5pub use tokio::sync::{Mutex, MutexGuard, OnceCell, RwLock};