sqlite3-parser 0.16.0

SQL parser (as understood by SQLite)
Documentation
1
2
3
4
5
6
7
8
9
//! SQLite3 syntax lexer and parser
#![warn(missing_docs)]
//#![warn(clippy::large_stack_frames)] doesn't take into account opt-level / --release flag

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