1 2 3 4 5 6 7 8 9 10 11
//! Set CRDT implementations //! //! This module provides set-based CRDTs for tracking collections of elements //! with different semantics (grow-only, add/remove). pub mod gset; pub mod orset; // Re-export main types pub use gset::GSet; pub use orset::ORSet;