sakuhiki_core/lib.rs
1// TODO(low): look once more at removing all the Pin<Box<...>> when possible
2
3pub mod backend;
4pub use backend::{Backend, BackendBuilder};
5
6mod datum;
7pub use datum::{Datum, IndexedDatum};
8
9mod db;
10pub use db::{Db, Transaction};
11
12mod errors;
13pub use errors::{CfError, IndexError};
14
15mod index;
16pub use index::Index;
17
18pub mod indexer;
19pub use indexer::Indexer;