mdcs-db
Database layer for the MDCS (Merkle-Delta CRDT Store).
This crate provides:
- Document-based API with path operations
- Collaborative text (RGAText, RichText)
- JSON/Object CRDT for flexible schemas
- Presence and awareness for real-time collaboration
- Undo/Redo support
Example
use ;
let mut store = new;
// Create a text document
let doc_id = store.create_text;
store.text_insert.unwrap;
// Create a JSON document
let json_id = store.create_json;
store.json_set.unwrap;
// Rich text with formatting
let rich_id = store.create_rich_text;
store.rich_text_insert.unwrap;
store.rich_text_bold.unwrap;