timext 0.1.0

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
#![feature(const_option)]

// TODO Make everything const
// see https://github.com/xwde/timext/issues/2

mod duration;
pub use duration::CalendarDuration;

mod feature;
pub use feature::*;

mod extension;
pub mod ext {
    pub use crate::extension::*;
}