From 9d6aef34add7a1bf32e754951a3d500721a2e626 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Mon, 15 May 2023 18:23:23 +0200 Subject: clippy lint fix --- src/mail/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mail/mod.rs') diff --git a/src/mail/mod.rs b/src/mail/mod.rs index 3b0ae73..80c348a 100644 --- a/src/mail/mod.rs +++ b/src/mail/mod.rs @@ -9,6 +9,8 @@ pub mod user; // Internet Message Format // aka RFC 822 - RFC 2822 - RFC 5322 +// 2023-05-15 don't want to refactor this struct now. +#[allow(clippy::upper_case_acronyms)] pub struct IMF<'a> { raw: &'a [u8], parsed: mail_parser::Message<'a>, -- cgit v1.2.3