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
//! A series of primitive data types for interacting with the Fixity store.

pub mod appendlog;
pub mod bytes;
pub mod commitlog;
pub mod prollylist;
pub mod prollytree;
pub use {
    self::{
        appendlog::AppendLog,
        bytes::{Create as BytesCreate, Read as BytesRead},
        commitlog::CommitLog,
    },
    crate::core::cache::Structured as Object,
};