Registry / other / crdts
library7.3.2rscratesunverified

Practical, serializable, thoroughly tested CRDTs.

# Cargo.toml [dependencies] crdts = "7.3.2"
INSTALL
IMPORT
SIG · CRDTS
C
crdts
otherrustv7.3.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GCounter
use crdts::GCounter;

Create two GCounters, increment, merge, and read the value.

use crdts::GCounter; fn main() { let mut a = GCounter::new(); a.increment(5); let mut b = GCounter::new(); b.increment(3); a.merge(b); println!("Count: {}", a.value()); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
7.3.2latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
crdts — cargo add crdts · libregistry