mm1_timer/
lib.rs

1// #![warn(missing_docs)]
2#![warn(rust_2018_idioms)]
3#![warn(unreachable_pub)]
4
5pub mod actor;
6pub mod api;
7
8#[cfg(feature = "tokio-time")]
9pub mod tokio_time;
10
11#[cfg(feature = "tokio-time")]
12pub use tokio_time::new_tokio_timer;