1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Experimental extensions to the `std::time` module.
#![doc(html_root_url="https://sfackler.github.io/rust-time2/doc/v0.2.0")]
#![warn(missing_docs)]

#[cfg(test)]
extern crate quickcheck;
#[cfg(test)]
extern crate rand;

pub use duration::DurationExt;
#[cfg(feature = "beta")]
pub use system_time::SystemTimeExt;

mod duration;
#[cfg(feature = "beta")]
mod system_time;