limbo_sqlite3_parser 0.0.22

SQL parser (as understood by SQLite)
Documentation
1
2
3
4
5
6
7
8
9
//! SQLite3 syntax lexer and parser
#![warn(missing_docs)]

pub mod dialect;
// In Lemon, the tokenizer calls the parser.
pub mod lexer;
mod parser;
pub use parser::ast;
pub mod to_sql_string;