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
//! Map CRDT implementations
//!
//! This module provides map-based CRDTs for tracking key-value pairs
//! with different conflict resolution semantics.

pub mod lww;

// Re-export main types
pub use lww::LWWMap;