hematite-db 0.1.0

A small embeddable SQL database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SQL query parser for converting tokens to AST

pub mod ast;
pub mod lexer;
pub mod parser;
pub mod types;

pub use ast::*;
pub use lexer::Lexer;
pub use parser::Parser;
pub use types::*;

#[cfg(test)]
mod tests;