infinite-db 0.3.0

A spatial-graph database using n-dimensional curves and hyperedges for engineering logic.
Documentation
//! Synchronization and replication protocols.

/// Snapshot delta computation and application.
pub mod delta;
/// Merkle tree verification helpers.
pub mod merkle;
/// Wire serialization for sync messages.
pub mod serial;
/// Durable outbox state for offline replication.
pub mod outbox;
/// Transport traits and default adapters.
pub mod transport;
/// Background replication worker loop.
pub mod worker;
/// Block-level sync session driver.
pub mod session;
/// Persisted unresolved merge conflicts.
pub mod conflict_queue;
/// Branch-aware replication for [`crate::InfiniteDb`].
pub mod replicate;