chore(qa): format code and configure clippy lints

This commit is contained in:
2026-09-19 10:04:53 +02:00
parent 45572b7370
commit 28a4bb6b70
16 changed files with 157 additions and 109 deletions
+1 -4
View File
@@ -1798,10 +1798,7 @@ fn test_m02_release_profile_enables_overflow_checks() {
.split("[profile.release]")
.nth(1)
.expect("Must have [profile.release] section");
let release_block = release_section
.split('[')
.next()
.unwrap_or(release_section);
let release_block = release_section.split('[').next().unwrap_or(release_section);
assert!(
release_block.contains("overflow-checks = true"),
"M-02: [profile.release] must explicitly set overflow-checks = true to prevent integer overflow vulnerabilities"