timext 0.1.2

The collection of time-rs/time extensions for calendar arithmetics, incomplete formats handling, imprecise time, and other things time crate is not intended for.
Documentation
#![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::*;
}