readme/
readme.rs

1// The example from the README
2use human_date_parser::from_human_time;
3use chrono::Local;
4
5fn main() {
6    let now = Local::now().naive_local();
7    let date = from_human_time("Last Friday at 19:45", now).unwrap();
8    println!("{date}");
9}