sqlx Code Review Review Workflow 1. Check Cargo.toml — Note sqlx features ( , / , / / , , , , ) and Rust edition (2024 changes RPIT lifetime capture and removes need for ) 2. Check query patterns — Compile-time checked ( , ) vs runtime ( , ) 3. Check pool configuration — Connection limits, timeouts, idle settings 4. Check migrations — File naming, reversibility, data migration safety 5. Check type mappings — Rust types align with SQL column types Gates (evidence before severity) Complete in order; do not assign Critical / Major until the gate for that claim is passed. 1. Scope — Identify the…