object_store/lib.rs
1#![feature(iterator_try_collect)]
2#![feature(slice_as_chunks)]
3//mod fs;
4//mod kms;
5//mod lethe_object_store;
6//mod wrapped_extent;
7
8mod ext4;
9pub use ext4::Ext4Store;
10pub mod paged_object_store;
11
12//pub use lethe_object_store::{
13// key_fprint, LetheObjectStore, LetheState, PerObjLetheState, StdIoWrapper as LetheIoWrapper,
14//};
15pub use paged_object_store::*;
16
17pub const PAGE_SIZE: usize = 4096;