1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! # Chrono-utils
//! Utils for the [chrono](https://github.com/lifthrasiir/rust-chrono) library.
//! 
//! ## Supported features
//!
//! * W3C parser and formatter
//#
extern crate chrono;
/// Using for date and time parsing.
pub mod parser;
/// Using for date and time formatting.
pub mod formatter;