resolute 0.5.0

Compile-time-checked PostgreSQL queries with a pure-Rust wire protocol driver.
Documentation
1
2
3
4
5
6
7
// Should fail: PgEnum can only be derived for enums, not structs.
#[derive(resolute::PgEnum)]
struct Bad {
    field: String,
}

fn main() {}