postgres_macros 0.1.13

A set of support macros for rust-postgres
1
2
3
4
5
6
#![feature(plugin)]
#![plugin(postgres_macros)]

fn main() {
    let _ = sql!("SELECT foo FORM bar"); //~ ERROR syntax error at or near "bar"
}