nomad_protocol/sync/mod.rs
1//! NOMAD Protocol - Sync Layer
2//!
3//! Implements:
4//! - State versioning with monotonic version numbers
5//! - Idempotent diff generation and application
6//! - Acknowledgment tracking
7//! - Eventual consistency guarantees
8
9mod ack;
10mod engine;
11mod message;
12mod receiver;
13mod sender;
14mod tracker;
15
16pub use ack::*;
17pub use engine::*;
18pub use message::*;
19pub use receiver::*;
20pub use sender::*;
21pub use tracker::*;