time_range 0.0.3-alpha.0

TimeRange and DateRange types for Chrono
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use chrono;
pub mod convert;
mod date_range;
pub mod error;
mod time_range;
pub mod util;

pub use date_range::DateRange;
pub use time_range::TimeRange;
pub use util::{round_down_to_minute, round_up_to_minute};

// re-export chrono members in time_range namespace
pub use chrono::*;