timer-kit 0.1.1

A timer toolkit that is generic over the underlying timer implementation.
Documentation
#[macro_use]
mod macros;

mod common;

cfg_not_wasm32! {
    cfg_smol! {
        #[smol_potat::test]
        async fn immediate_sleep() {
            common::sleep::immediate_sleep::<smol::Timer>().await;
        }
    
        #[smol_potat::test]
        async fn short_sleep() {
            common::sleep::short_sleep::<smol::Timer>().await;
        }
    
        #[smol_potat::test]
        async fn reset() {
            common::sleep::reset::<smol::Timer>().await;
        }
    }
}