sqlm-postgres 0.1.0

`sql!` macro to write compile-time checked database queries similar to how `format!` works
Documentation
1
2
3
4
5
6
7
8
use sqlm_postgres::sql;

#[tokio::test]
async fn test_unit_type() {
    sql!("UPDATE users SET name = 'updated' WHERE id = -1")
        .await
        .unwrap();
}