mace/lib.rs
1pub use index::txn::{TxnKV, TxnView};
2pub(crate) use store::store::Store;
3pub use store::store::{Bucket, Mace};
4pub use store::{MetaVacuumStats, VacuumStats};
5pub use utils::observe;
6pub use utils::{
7 OpCode, RandomPath,
8 options::{BucketOptions, Options},
9};
10
11mod cc;
12mod index;
13mod io;
14mod map;
15mod meta;
16mod store;
17mod utils;
18
19mod types;
20pub use index::{Iter, ValRef};