bsql 0.27.0

Safe SQL for Rust — if it compiles, the SQL is correct
Documentation
1
2
3
4
5
fn main() {
    let _ = bsql::query!(
        "SELECT id FROM nonexistent_table_xyz WHERE id = 1"
    );
}