haematite 0.1.0

Content-addressed, branchable, actor-native storage engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! API-001: the public `EventStore` API, value types, and error types.

pub mod error;
pub mod event_store;
pub mod kv;
pub mod types;

pub use error::{ApiError, CasMismatch, SequenceConflict};
pub use event_store::{EventStore, decode_stream_key, encode_stream_key};
pub use types::{Event, ScanResult, StreamMeta};