nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
// SPDX-License-Identifier: BUSL-1.1

//! Per-tenant CRDT engine state.
//!
//! Manages the loro-backed CRDT state, constraint validation, and dead-letter
//! queue for a single tenant. Lives on the Data Plane (one per tenant per core).

pub mod apply_validated;
pub mod core;
pub mod doc_mutate;
pub mod history;
pub mod policy;
pub mod validate;

#[cfg(test)]
mod tests;

pub use apply_validated::ValidatedApplyOutcome;
pub use core::TenantCrdtEngine;