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