[fix](workspace): resolve clippy warnings

Clean up the workspace so cargo clippy passes across all targets and features.

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-01 13:22:44 +01:00
parent 523f3992f5
commit 46bc96ddf2
10 changed files with 89 additions and 102 deletions
+1 -1
View File
@@ -631,7 +631,7 @@ mod tests {
let mut candidate = Candidate::new(240_000.0, 0.0);
let pi = 0x52ab;
let block_a = encode_block(pi, OFFSET_A);
let block_b = encode_block((10 << 5) | 0, OFFSET_B);
let block_b = encode_block(10 << 5, OFFSET_B);
let block_d = encode_block(u16::from_be_bytes(*b"AB"), OFFSET_D);
for bit_idx in (0..26).rev() {