hocuspocus-rs-ws 0.1.0

Async WebSocket server implementing the Hocuspocus collaborative editing protocol in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Portions of this crate are adapted from the Hocuspocus JavaScript server
// (https://github.com/ueberdosis/hocuspocus) and y-sweet
// (https://github.com/y-sweet/y-sweet), both distributed under the MIT license.
// Adapted code retains the original license terms.

pub mod authenticator;
pub mod api_types;
pub mod client_connection;
pub mod doc_connection;
pub mod doc_sync;
pub mod hocuspocus;
pub mod store;
pub mod sync;
pub mod sync_kv;
pub mod types;