yrs-warp 0.7.0

Yrs synchronization protocol using Warp web sockets
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Arc;
use tokio::sync::RwLock;
use y_sync::awareness::Awareness;

pub mod signaling;
pub mod ws;

pub type BroadcastGroup = y_sync::net::BroadcastGroup;
pub type AwarenessRef = Arc<RwLock<Awareness>>;