Disable "redundant_pub_crate"

This commit is contained in:
2024-11-12 18:18:02 +01:00
parent e41721d05d
commit 6e6e740e7e

View File

@@ -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()];