os_timer/
lib.rs

1//! Cross-platform wrapper over OS timers
2//!
3//! # Requirements
4//!
5//! - Posix timer requires compilation of C shim (i.e. Correct C compiler must be available when
6//! compiling for posix target).
7
8#![no_std]
9#![warn(missing_docs)]
10#![cfg_attr(feature = "cargo-clippy", allow(clippy::style))]
11
12#[cfg(any(windows, unix))]
13mod timer;
14#[cfg(any(windows, unix))]
15pub use timer::*;