solidb 1.0.1

A lightweight, high-performance structured database server written in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
pub mod ast;
pub mod executor;
pub mod lexer;
pub mod parser;
pub mod prepared;

pub use ast::*;
pub use executor::{
    BindVars, MutationStats, QueryExecutionResult, QueryExecutor, QueryExplain, QueryPrincipal,
};
pub use parser::parse;
pub use prepared::{get_prepared_statement_cache, PreparedStatementCache};