humantime 0.1.0

A human friendly format parser for std::time::Duration.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Human-friendly time parser
//!
//! Currently this only currently implements parsing of duration. Relative and
//! absolute times may be added in future.

#[macro_use] extern crate quick_error;

mod duration;

pub use duration::{parse_duration, Error as DurationError};