From 3219387641725b790bce45e7e4cbc355d2a03df0 Mon Sep 17 00:00:00 2001 From: argenis de la rosa Date: Sat, 14 Feb 2026 16:47:27 -0500 Subject: [PATCH] fix: add clippy allow for manual_is_multiple_of lint (stable Rust compat) --- src/security/secrets.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/security/secrets.rs b/src/security/secrets.rs index bafad38..8dea343 100644 --- a/src/security/secrets.rs +++ b/src/security/secrets.rs @@ -240,6 +240,7 @@ fn hex_encode(data: &[u8]) -> String { } /// Hex-decode a hex string to bytes. +#[allow(clippy::manual_is_multiple_of)] fn hex_decode(hex: &str) -> Result> { if hex.len() % 2 != 0 { anyhow::bail!("Hex string has odd length");