chrono_utils 0.1.3

Utils for chrono library. It's may parse w3c date.
Documentation
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;