1 2 3 4 5 6 7
use chrono::NaiveDate; pub mod locales; pub trait HumanDateParser { fn parse_relative(text: &str, now: NaiveDate) -> Option<NaiveDate>; }