codemp 0.8.5

codemp -- code multiplexer
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! ### Buffer
//! A buffer is a container of text, modifiable in sync by users.
//! It is built on top of [diamond_types] CRDT, guaranteeing that all peers which have received the
//! same set of operations will converge to the same content.

/// controller worker implementation
pub(crate) mod worker;

/// buffer controller implementation
pub mod controller;
pub use controller::BufferController as Controller;