From 2376a0a1cc8f5bd333e92b8641410efd67e37c10 Mon Sep 17 00:00:00 2001
From: Paul Dicker <paul@pitdicker.nl>
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 2ccd4166d0..6230c32a8c 100644
--- a/src/format/parse.rs
+++ b/src/format/parse.rs
@@ -542,7 +542,7 @@ where
                     }
 
                     &RFC2822 => try_consume!(parse_rfc2822(parsed, s)),
-                    &RFC3339 => try_consume!(parse_rfc3339(parsed, s)),
+                    &RFC3339 => try_consume!(parse_rfc3339_relaxed(parsed, s)),
                 }
             }