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()
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 usingDateTime::parse_from_rfc3339()