stevedonovan / chrono-english

Converting informal English dates (like `date` command) to chrono DateTime in Rust
MIT License
57 stars 14 forks source link

"description() is deprecated; use Display." error message when parsing fails #15

Closed JWorthe closed 3 years ago

JWorthe commented 3 years ago

When I call parse_date_string("12:", Local::now(), Dialect::Uk), I get the following error:

DateError {
    details: "description() is deprecated; use Display",
}
stevedonovan commented 3 years ago

Version 0.1.5 sorts this out, together with remaining warnings. Thanks @JWorthe

JWorthe commented 3 years ago

Thanks Steve!