feophant 0.9.0

A SQL database server written in Rust and inspired by PostreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]

#[macro_use]
extern crate bitflags;

#[macro_use]
extern crate log;

extern crate simplelog;

//Application Imports/Exports
pub mod codec;
pub mod constants;
pub mod engine;
pub mod feophant;
pub mod processor;