From 6e6e740e7e2dbbc6fb895af62bd02cb5e240653b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 12 Nov 2024 18:18:02 +0100 Subject: [PATCH] Disable "redundant_pub_crate" --- src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 265377e..d08c872 100644 --- a/src/main.rs +++ b/src/main.rs @@ -488,7 +488,11 @@ fn main() -> Result<()> { "if_not_else".into(), ]; - let nursery_allows = &["missing_const_for_fn".into(), "option_if_let_else".into()]; + let nursery_allows = &[ + "missing_const_for_fn".into(), + "option_if_let_else".into(), + "redundant_pub_crate".into(), + ]; let complexity_allows = &["too_many_arguments".into()];