jasondb/lib.rs
1//! JasonDB is a blazingly-fast, JSON-based, log-structured database for Rust.
2//! It can be backed with a file or be used fully in-memory, and it is highly resilient and flexible.
3
4#![warn(missing_docs)]
5
6mod database;
7pub mod error;
8pub mod replica;
9pub mod sources;
10mod util;
11
12#[macro_use]
13pub mod query;
14
15#[cfg(test)]
16mod tests;
17
18pub use database::Database;