Parse various different date/time formats to a standard RFC 3339 format as chrono DateTime FixedOffset.
Note
- If date/time does NOT have year
; current year
is added
- if date/time does NOT have time-zone
info; Local time-zone info
is added
Some example dates are seen here!
toml
[dependencies]
datetime_parser = "0.0.1-beta.4"
and
```rust use datetime_parse::DateTimeFixedOffset;
fn main() {
let datestr = "Mon, 6 Jul 1970 15:30:00 PDT";
let result = datestr.parse::
bash
cargo run --example parse
Feel free to add more formats that you see, which is not present in the library.
License: MIT