karyon_core/async_runtime/
lock.rs

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};