What changed, and why it matters
This commit removes an unused compiler configuration flag from a linting rule in the package manifest. It is a cleanup change with no security relevance.
Recommended action
No action needed. This is a benign cleanup commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit removes cfg(rust_v_1_64) from the check-cfg list in hashes/Cargo.toml under [lints.rust]. This tells the Rust compiler not to expect that cfg flag during linting. The flag was unused elsewhere, so this is a minor maintenance cleanup. No code behavior changes.
Changed components
hashes/Cargo.tomlInspect captured patch +1 / −1
diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml
index a58bfe16..92bc7330 100644
--- a/hashes/Cargo.toml
+++ b/hashes/Cargo.toml
@@ -41,7 +41,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints.rust]
-unexpected_cfgs = { level = "deny", check-cfg = ['cfg(hashes_fuzz)', 'cfg(rust_v_1_64)' ] }
+unexpected_cfgs = { level = "deny", check-cfg = ['cfg(hashes_fuzz)'] }
[lints.clippy]
redundant_clone = "warn"
Risk score
Our methodology →Why this scored 15/100
Human-validated context
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
No validated notes yet.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.