From 1cdfd9e74c121bcf46662630263599992e51ea53 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Tue, 2 Jan 2024 21:30:36 -0800 Subject: [PATCH] Silence `clippy::struct_field_names` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index e43f65b3c..7074acc62 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,6 +4,7 @@ #![cfg_attr(test, allow(clippy::shadow_unrelated))] #![warn(clippy::cargo)] #![allow(unknown_lints)] +#![allow(clippy::struct_field_names)] #![warn(missing_copy_implementations)] #![warn(missing_debug_implementations)] #![warn(missing_docs)]