What changed, and why it matters
This commit adds one line to a CI lint script, telling the Clippy linter to ignore a newly introduced style warning (manual_is_multiple_of) until the project can require a newer Rust compiler version. It does not change any application code, runtime behavior, or security-sensitive logic.
No security action required. Treat as routine CI maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies ci/check-lint.sh by appending -A clippy::manual_is_multiple_of to the list of allowed Clippy lints, gated by a comment indicating removal once MSRV reaches 1.87. This is purely a CI/tooling adjustment to keep the lint job passing after a Rust/Clippy update. No Rust source files are changed.
Changed components
ci/check-lint.shInspect captured patch +1 / −0
diff --git a/ci/check-lint.sh b/ci/check-lint.sh
index f197784..bd4df3b 100755
--- a/ci/check-lint.sh
+++ b/ci/check-lint.sh
@@ -109,6 +109,7 @@ CLIPPY() {
-A clippy::unnecessary_map_or `# to be removed once we hit MSRV 1.70` \
-A clippy::manual_repeat_n `# to be removed once we hit MSRV 1.86` \
-A clippy::io_other_error `# to be removed once we hit MSRV 1.74` \
+ -A clippy::manual_is_multiple_of `# to be removed once we hit MSRV 1.87` \
-A clippy::uninlined-format-args
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.