karyon_core 0.5.0

Internal crate for Karyon library.
Documentation
1
2
3
4
5
6
pub async fn sleep(duration: std::time::Duration) {
    #[cfg(feature = "smol")]
    smol::Timer::after(duration).await;
    #[cfg(feature = "tokio")]
    tokio::time::sleep(duration).await;
}