fosk 0.1.6

In-memory SQL-like query engine and lightweight data store for testing and prototyping.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod id_type;
pub use id_type::*;

pub mod id_manager;
pub use id_manager::*;

pub mod db_config;
pub use db_config::*;

pub mod db_collection;
pub use db_collection::*;

pub mod db;
pub use db::*;

pub mod schema;
pub use schema::*;