db-rs 0.1.12

fast, embedded, transactional, key value store
Documentation
pub use crate::config::Config;
pub use crate::db::Db;
pub use crate::errors::DbError;
pub use crate::errors::DbResult;
pub use crate::logger::Logger;
pub use crate::logger::TxHandle;

pub use crate::list::List;
pub use crate::lookup::LookupTable;
pub use crate::single::Single;

pub mod config;
pub mod db;
pub mod errors;
pub mod list;
pub mod logger;
pub mod lookup;
pub mod single;
pub mod table;

pub type TableId = u8;
pub type ByteCount = u32;