diff --git a/Cargo.toml b/Cargo.toml index 59e25274..9e0af614 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -389,6 +389,10 @@ expect_used = "allow" unwrap_used = "allow" print_stdout = "allow" print_stderr = "allow" +# Allow sort_by with comparisons - many valid uses in codebase for reverse sorting +unnecessary_sort_by = "allow" +# Allow iter() without IntoIterator implementation +iter_without_into_iter = "allow" [profile.release] lto = "fat"