fixity 0.0.1

Storage for structured and unstructured data backed by an immutable storage engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod bytes;
pub mod cache;
pub mod deser;
pub(crate) mod dir;
pub mod fixity;
pub mod map;
pub mod misc;
pub mod primitive;
pub mod storage;
pub mod workspace;

pub use self::{
    bytes::Bytes,
    cache::{CacheRead, CacheWrite},
    fixity::{Commit, Fixity},
    map::Map,
    storage::{Storage, StorageRead, StorageWrite},
};