1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] #![doc = include_str!("./README.md")] // TODO: Make everything const. // see https://github.com/xwde/timext/issues/2 mod duration; pub use duration::*; mod incomplete; pub use incomplete::*; mod feature; pub use feature::*; pub mod error; mod extension; pub mod ext { //! Extension traits. pub use crate::extension::*; }