logicaffeine-data 0.10.0

WASM-safe data structures and CRDTs - NO IO
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Causal infrastructure for delta-state CRDTs.
//!
//! Foundation for tracking causality in distributed systems.

mod dot;
mod vclock;
mod context;

pub use dot::Dot;
pub use vclock::VClock;
pub use context::DotContext;