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
//! Counter CRDT implementations
//!
//! This module provides counter-based CRDTs for tracking numeric values
//! with different semantics (grow-only, increment/decrement).

pub mod gcounter;
pub mod pncounter;

// Re-export main types
pub use gcounter::GCounter;
pub use pncounter::PNCounter;