We considered adding the sqlx-named-bind crate to allow :name-style parameters on SQL queries.
Current policy (ADR-014) centralises SQL in revaer-data and requires stored procedures with explicit named arguments (_arg => $1), and AGENT.md pushes for minimal dependencies.
Introducing another proc-macro layer would broaden the attack surface and add coupling to sqlx’s internal SQL parsing while providing limited benefit because we already control SQL strings in the DAL.
None now. If future requirements force raw SQL ergonomics, revisit with a new ADR that justifies the dependency, version pinning, and testing/CI coverage.***