From 8938309f4b4c56a9455c54f7dcae141cffdc5cca Mon Sep 17 00:00:00 2001 From: WillLillis Date: Fri, 4 Jul 2025 16:18:42 -0400 Subject: [PATCH] fix(rust): ignore new nightly lint, correct order of lint list --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 060ef0b8..5deba665 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,6 +60,8 @@ missing_errors_doc = "allow" missing_panics_doc = "allow" module_name_repetitions = "allow" multiple_crate_versions = "allow" +needless_for_each = "allow" +obfuscated_if_else = "allow" option_if_let_else = "allow" or_fun_call = "allow" range_plus_one = "allow" @@ -75,7 +77,6 @@ too_many_lines = "allow" unnecessary_wraps = "allow" unused_self = "allow" used_underscore_items = "allow" -obfuscated_if_else = "allow" [profile.optimize] inherits = "release"