peat-mesh 0.8.0

Peat mesh networking library with CRDT sync, transport security, and topology management
Documentation
//! Data synchronization abstraction layer
//!
//! This module provides a unified interface for CRDT-based data synchronization,
//! enabling the mesh to work with multiple sync engines without changing
//! business logic.
//!
//! ## Core Traits
//!
//! 1. **`DocumentStore`** - CRUD operations, queries, and live observers
//! 2. **`PeerDiscovery`** - Finding and connecting to other nodes
//! 3. **`SyncEngine`** - Controlling synchronization behavior
//! 4. **`DataSyncBackend`** - Lifecycle management and trait composition

pub mod in_memory;
pub mod traits;
pub mod types;

// Re-export core types and traits for convenience
pub use in_memory::InMemoryBackend;
pub use traits::*;
pub use types::*;