atadb 0.1.0

atadb will be a simple but fast relational database that supports a subset of SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate app_dirs;
extern crate rand;

#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate log;

pub mod auth;
pub mod control;
pub mod ddl;
pub mod index;
pub mod intern;
pub mod modify;
pub mod rows;
pub mod select;
pub mod tables;
pub mod util;