What changed, and why it matters
This commit only changes the project's Clippy linter configuration file. It removes some general settings and tells the linter that 'SegWit' and 'OpenSSL' are valid terms in documentation so it won't nag about missing backticks. There is no code change and no security impact.
No security action needed; this is a routine developer-tooling change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies clippy.toml: it removes msrv, too-many-arguments-threshold, and avoid-breaking-exported-api settings, adds a comment, and sets doc-valid-idents to [‘SegWit’, ‘OpenSSL’]. This is purely a linting/documentation-tooling configuration change with no effect on runtime behavior or compiled code.
Changed components
clippy.tomlInspect captured patch +2 / −3
diff --git a/clippy.toml b/clippy.toml
index 70f47d05..ae690ce7 100644
--- a/clippy.toml
+++ b/clippy.toml
@@ -1,4 +1,3 @@
-msrv = "1.74.0"
-too-many-arguments-threshold = 13
-avoid-breaking-exported-api = false
+# Clippy config for `rust-bitcoin`.
+
doc-valid-idents = ["SegWit", "OpenSSL"]
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.