samscott89 / serde_qs

Serde support for querystring-style strings
Apache License 2.0
193 stars 68 forks source link

Plus and Minuses for Time Zone Information in Date Time Strings #66

Closed IdemenB closed 2 years ago

IdemenB commented 2 years ago

Hi,

I just noticed, when I use serde_qs within Actix4 to capture the query parameters sent with a HTTP request, the crate disposes of plus and minus signs that must be available in date time with TZ strings. Below are two samples.

1996-12-19T16:39:57-08:00

2022-06-29T07:02:50+00:00

I expect to get them as String instances and parse to DateTime using DateTime::parse_from_rfc3339()

samscott89 commented 2 years ago

This appears to be a duplicate of #65