elara_state/lib.rs
1#![allow(mixed_script_confusables)]
2//! ELARA State Engine - State reconciliation and divergence control
3//!
4//! This crate implements the State Reconciliation Engine:
5//! - State field management
6//! - Authority checking
7//! - Causality validation
8//! - Delta merge operations
9//! - Divergence control
10//! - Partition handling
11
12pub mod field;
13pub mod reconcile;
14
15pub use field::*;
16pub use reconcile::*;