Rust Code Review Review Workflow Follow this sequence to avoid false positives and catch edition-specific issues: 1. Check — Note the Rust edition (2018, 2021, 2024) and MSRV if set. Edition 2024 introduces breaking changes to unsafe semantics, RPIT lifetime capture, temporary scoping, and type fallback. This determines which patterns apply. Check workspace structure if present. 2. Check dependencies — Note key crates (thiserror vs anyhow, tokio features, serde features). These inform which patterns are expected. 3. Scan changed files — Read full functions, not just diffs. Many Rust bugs hide…