huskies: merge 854

This commit is contained in:
dave
2026-04-29 09:25:05 +00:00
parent 8802e1fe59
commit 4ed1fb5110
18 changed files with 79 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
//! Last-writer-wins (LWW) register CRDT.
//!
//! Implements a delete-wins LWW register for primitive values inside a nested
//! JSON CRDT. Concurrent writes are resolved by sequence number; ties are broken
//! by author public key so every node converges to the same value.
use crate::debug::DebugView;
use crate::json_crdt::{CrdtNode, JsonValue, OpState};
use crate::op::{join_path, print_path, Op, PathSegment, SequenceNumber};