resolute 0.5.0

Compile-time-checked PostgreSQL queries with a pure-Rust wire protocol driver.
Documentation
1
2
3
4
5
6
7
8
// Should fail: PgEnum only supports unit variants (no fields).
#[derive(resolute::PgEnum)]
enum Bad {
    A,
    B(i32),
}

fn main() {}