yrs 0.18.8

High performance implementation of the Yjs CRDT
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("{0}")]
    ReadError(#[from] crate::encoding::read::Error),
    #[error("Cannot execute this operation when document garbage collection is set")]
    Gc,
}