//! Delta CRDT trait and types.
//!
//! Trait for CRDTs that support delta-state synchronization.
use VClock;
use Merge;
use ;
/// A CRDT that supports delta-state synchronization.
///
/// Delta-state CRDTs can extract small deltas representing recent changes,
/// rather than broadcasting the entire state. This is more efficient for
/// large data structures.