From 172bdef34da1ecae9ca592afa40b09304f6a282e Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Sun, 11 Jun 2023 08:53:16 +0200 Subject: [PATCH] Switch `RFC3339` formatting item to relaxed parser --- src/format/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format/parse.rs b/src/format/parse.rs index 7a7e8a578c..68016a8a24 100644 --- a/src/format/parse.rs +++ b/src/format/parse.rs @@ -540,7 +540,7 @@ where } &RFC2822 => try_consume!(parse_rfc2822(parsed, s)), - &RFC3339 => try_consume!(parse_rfc3339(parsed, s)), + &RFC3339 => try_consume!(parse_rfc3339_relaxed(parsed, s)), } }