sakuhiki-core 0.0.1-alpha.0

Indexing overlay for any key-value store
Documentation
// TODO(low): look once more at removing all the Pin<Box<...>> when possible

pub mod backend;
pub use backend::{Backend, BackendBuilder};

mod datum;
pub use datum::{Datum, IndexedDatum};

mod db;
pub use db::{Db, Transaction};

mod errors;
pub use errors::{CfError, IndexError};

mod index;
pub use index::Index;

pub mod indexer;
pub use indexer::Indexer;