haematite 0.6.1

Content-addressed, branchable, actor-native storage engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod boundary;
pub mod cursor;
pub mod diff;
pub mod mutate;
#[cfg(test)]
mod mutate_history_independence_tests;
pub mod node;
mod source_error;

pub use boundary::BoundaryDetector;
pub use cursor::{Cursor, RangeIter, TreeError};
pub use diff::{DiffEntry, DiffError, diff};
pub use mutate::{batch_mutate, batch_mutate_owned, delete, insert};
pub use node::{Hash, InternalNode, LeafNode, Node, NodeError, empty_root_hash};
pub(crate) use source_error::TreeOperationError;