basic-human-duration

A very small crate to format durations for humans.

In comparison to the original repo... - this supports months - this adjusts what is considered "just now" (before it was <60 minutes, now it is <60 seconds) - has other minor adjustments

Example

```rust use basichumanduration::ChronoHumanDuration; use chrono::Duration;

let d = Duration::weeks(2) + Duration::days(3); asserteq!(d.formathuman().tostring(), "2 weeks ago"); let d = Duration::seconds(20); asserteq!(d.formathuman().tostring(), "just now"); ```