retable/
lib.rs

1#![warn(missing_docs)]
2//! A two key value store.
3//!
4//! Used by entropy-rs, The Game ยท Created by RuofengX.
5//!
6//!
7//! Features:
8//! * No-unsafe, also source code.
9//! * Thread-safe, build on top of sled and moka.
10//! * Persistent, check [`sled::Config`] to learn more about the database.
11//!
12
13pub mod atom;
14pub mod basic;
15pub mod db;
16pub mod error;
17pub mod method;
18
19pub use db::{Database, Prop};
20pub use sled::Config;