From b0042eb0c3e6c7406c9812887482dbe094624bb6 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Fri, 8 Dec 2023 17:40:42 +0100 Subject: [PATCH] Clippy thinks I have too many bools in my structs --- crates/storage-pg/src/oauth2/client.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/storage-pg/src/oauth2/client.rs b/crates/storage-pg/src/oauth2/client.rs index 0e5cc1d5..28eff034 100644 --- a/crates/storage-pg/src/oauth2/client.rs +++ b/crates/storage-pg/src/oauth2/client.rs @@ -54,6 +54,7 @@ impl<'c> PgOAuth2ClientRepository<'c> { } // XXX: response_types & contacts +#[allow(clippy::struct_excessive_bools)] #[derive(Debug)] struct OAuth2ClientLookup { oauth2_client_id: Uuid,