mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-22 00:00:50 +00:00
CI runs stable (now 1.95) which surfaces two new lints my 1.94 local check missed: - collapsible_match in reverse_message_map.rs: collapse the empty guard branch into a match arm with a guard. - manual_checked_ops in admin/db.rs: replace the explicit zero check with checked_div(...).unwrap_or(0). - collapsible_match in admin/ws.rs: clippy's suggested guard form fails to compile because Bytes can't be moved in a pattern guard. Apply a targeted #[allow] with a comment explaining why. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>