1#[macro_use] extern crate lazy_static; 2extern crate regex; 3 4pub use parse::parse_duration; 5pub use error::Error; 6 7mod error; 8mod parse; 9mod test;