y-octo 0.0.3

High-performance and thread-safe CRDT implementation compatible with Yjs
Documentation
mod any;
mod content;
mod delete_set;
mod id;
mod io;
mod item;
mod item_flag;
mod refs;
mod update;
#[cfg(test)]
mod utils;

pub use any::Any;
pub(crate) use content::Content;
pub use delete_set::DeleteSet;
pub use id::{Client, Clock, Id};
pub use io::{CrdtRead, CrdtReader, CrdtWrite, CrdtWriter, RawDecoder, RawEncoder};
pub(crate) use item::{Item, ItemRef, Parent};
pub(crate) use item_flag::{ItemFlag, item_flags};
pub(crate) use refs::Node;
pub use update::Update;
#[cfg(test)]
pub(crate) use utils::*;

use super::*;