dtparse icon indicating copy to clipboard operation
dtparse copied to clipboard

A dateutil-compatible timestamp parser for Rust

Results 7 dtparse issues
Sort by recently updated
recently updated
newest added

https://github.com/dateutil/dateutil/pull/738 I'm not planning on doing work until the corresponding dateutil issue is resolved, but this will need to be fixed at some point.

this test makes dtparse panic: ``` fn test_dtparse() { assert!(dtparse::parse("/2018-fifa-").is_err()); } ```

1. Enhanced time zone check 2. modify default NaiveDate value set 1970-01-01 not today Fix Issue: https://github.com/bspeice/dtparse/issues/46

## How to reproduce `dtparse` is a good project that can resolve more parse questions. But I find a bug will cause panic: ```rust use chrono::NaiveDateTime; use dtparse::parse; pub fn...

Please tag this to make it easier to do a diff between releases and see what changes. Also - can the changelog file be updated? It has not been since...

Thank you for your nice project. I used dtparse to determine if the given string can be parsed to datetime. I accidentally found that calling `dtparse::parse` on the input `263660314029650025864127edc124c2`...