nodedb-crdt 0.2.1

CRDT engine with SQL constraint validation and dead-letter queue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BUSL-1.1

//! CRDT state management backed by loro.
//!
//! Each `CrdtState` wraps a `LoroDoc` representing one tenant/namespace's
//! state. Collections within the doc are `LoroMap` instances keyed by row ID,
//! where each row is itself a `LoroMap` of field→value.

pub mod bitemporal_archive;
pub mod core;
pub mod history;
pub mod snapshot;

#[cfg(test)]
mod tests;

pub use core::CrdtState;