A rust crate that displays duration in a human readable format.
This project is a port of chrono-humanize-rs and now has 0 dependencies.
```rust use std::time::Duration; use time_humanize::HumanTime;
let duration = Duration::fromsecs(60); let humantime = HumanTime::from(duration); println!("{}", human_time); ```