timer-kit 0.1.1

A timer toolkit that is generic over the underlying timer implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod std;

cfg_not_wasm32! {
    cfg_tokio! {
        mod tokio;
    }
}

cfg_wasm32! {
    cfg_wasm_timer! {
        mod wasm_timer;
    }

    cfg_fluvio_wasm_timer! {
        mod fluvio_wasm_timer;
    }
}