bsql 0.27.0

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