Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading