mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
CI's Rust Lint and Windows Rust jobs run `cargo clippy --all-targets -- -D warnings`; the manual `min(MAX_PER_PAGE).max(1)` clamp pattern in the Postgres backend tripped clippy::manual_clamp and failed both. Replace with `.clamp(1, MAX_PER_PAGE)` — identical result (1 <= 250). Co-authored-by: Tyler Longwell <tlongwell@block.xyz> Signed-off-by: Tyler Longwell <tlongwell@block.xyz>