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;