crdtosphere 0.1.0

Universal embedded CRDTs for distributed coordination across automotive, robotics, IoT, and industrial applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Register CRDT implementations
//!
//! This module provides register-based CRDTs that store single values
//! with conflict resolution semantics.

pub mod lww;
pub mod mv;

// Re-export main types
pub use lww::LWWRegister;
pub use mv::MVRegister;