magnumdb 0.4.8

High-performance embeddable database engine in Rust with B+ Tree storage, WAL durability, Volcano query engine, and Postgres wire protocol support.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod cli;
pub mod config;
pub mod network;
pub mod sql;
pub mod storage;
pub mod wal;

// Common exports
pub use config::Config;
pub use storage::Database;