sqlpop 0.3.0

SQL parser (as understood by SQLite)
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate lalrpop;

fn main() {
    lalrpop::Configuration::new()
        .emit_comments(false)
        .log_verbose()
        .process_current_dir()
        .unwrap();
    //lalrpop::process_root().unwrap();
    println!("cargo:rerun-if-changed=src/parser/lrsql.lalrpop");
}