io-timer 0.0.1

Set of I/O-free coroutines to manage timers
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![doc = include_str!("../README.md")]

#[cfg(feature = "client")]
pub mod client;
mod request;
mod response;
#[cfg(feature = "server")]
pub mod server;
pub mod timer;

#[doc(inline)]
pub use self::{request::Request, response::Response, timer::Timer};