async-timer 1.0.0-beta.2

Timers for Rust async story
Documentation
1
2
3
4
5
6
7
fn main() {
    #[cfg(all(feature = "c_wrapper", unix, not(any(target_os = "macos", target_os = "ios"))))]
    {
        cc::Build::new().file("src/c_wrapper/posix.c")
                        .compile("libposix_wrapper.a");
    }
}