telarex-core 0.5.1

Terminal-based collaborative text editor with P2P sync and post-quantum security
Documentation
1
2
3
4
5
6
7
8
9
//! CRDT — Automerge-based conflict-free replicated data types for collaborative editing.
//!
//! CRDT-based document synchronisation.
//!
//! [`SyncEngine`](sync_engine::SyncEngine) manages synchronised documents with text and cursor objects,
//! enabling multiple peers to concurrently edit the same file and converge
//! to a consistent state without a central server.

pub mod sync_engine;