fix(rust): ignore new nightly lint, correct order of lint list

(cherry picked from commit 8938309f4b)
This commit is contained in:
WillLillis 2025-07-04 16:18:42 -04:00 committed by Christian Clason
parent ab6c98eed7
commit 78a040d78a

View file

@ -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"