chore(lint): extend low-risk clippy cleanup batch

- normalize numeric literals (115_200) in hardware/peripheral config paths

- remove test-only useless format! allocations in discord IDs

- simplify closures and auto-deref in browser/http/rag/peripherals

- keep behavior unchanged while reducing warning surface
This commit is contained in:
Chummy 2026-02-17 16:33:10 +08:00
parent 4413790859
commit abdf99cf8c
8 changed files with 12 additions and 14 deletions

View file

@ -2023,7 +2023,7 @@ fn is_non_global_v6(v6: std::net::Ipv6Addr) -> bool {
// Link-local (fe80::/10)
|| (segs[0] & 0xffc0) == 0xfe80
// IPv4-mapped addresses
|| v6.to_ipv4_mapped().is_some_and(|v4| is_non_global_v4(v4))
|| v6.to_ipv4_mapped().is_some_and(is_non_global_v4)
}
fn host_matches_allowlist(host: &str, allowed: &[String]) -> bool {