What changed, and why it matters
This commit only adds a Clippy lint configuration to warn when code uses a type's full name instead of `Self`. It makes no changes to executable code, APIs, or security behavior. There is no security relevance.
No action needed; this is a code-style/tooling change with no security impact.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds [lints.clippy] use_self = "warn" to addresses/Cargo.toml. This is a static-analysis style rule enforcement; it does not alter runtime logic, dependencies, features, or any code path. No security bug is introduced or fixed.
Changed components
addresses/Cargo.tomlInspect captured patch +3 / −0
diff --git a/addresses/Cargo.toml b/addresses/Cargo.toml
index f23df698..f2d878d9 100644
--- a/addresses/Cargo.toml
+++ b/addresses/Cargo.toml
@@ -24,3 +24,6 @@ alloc = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
+
+[lints.clippy]
+use_self = "warn"
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.