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 @@
//! RGA-style list CRDT that stores any [`CrdtNode`] as its element type.
//!
//! Implements the Replicated Growable Array (RGA) algorithm with causal ordering.
//! Concurrent inserts at the same position are resolved by sequence number then
//! by author public key so that all replicas converge to the same sequence.
use crate::{
debug::debug_path_mismatch,
json_crdt::{CrdtNode, JsonValue, OpState},