elara-state 0.2.0

ELARA Protocol - State field engine with CRDT reconciliation, divergence control, and partition tolerance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(mixed_script_confusables)]
//! ELARA State Engine - State reconciliation and divergence control
//!
//! This crate implements the State Reconciliation Engine:
//! - State field management
//! - Authority checking
//! - Causality validation
//! - Delta merge operations
//! - Divergence control
//! - Partition handling

pub mod field;
pub mod reconcile;

pub use field::*;
pub use reconcile::*;