infinite-db 0.1.3

A spatial-graph database using n-dimensional curves and hyperedges for engineering logic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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;