We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fn main() { let valid = OffsetDateTime::parse("2020-09-25T01:22:02+00:00", &Rfc3339) .unwrap(); let invalid = OffsetDateTime::parse("2020-09-25 01:22:02+00:00", &Rfc3339) .unwrap_err(); }
https://datatracker.ietf.org/doc/html/rfc3339#section-5.6
Works in 3.36 but not 3.37. As I'm reading RFC3339, the T is required, and a space isn't valid. date-time = full-date "T" full-time
date-time = full-date "T" full-time
The text was updated successfully, but these errors were encountered:
See #700. The spec is not 100% clear, so I decided to go with the more lax parsing (while still only emitting T).
T
Sorry, something went wrong.
No branches or pull requests
https://datatracker.ietf.org/doc/html/rfc3339#section-5.6
Works in 3.36 but not 3.37. As I'm reading RFC3339, the T is required, and a space isn't valid.
date-time = full-date "T" full-time
The text was updated successfully, but these errors were encountered: