crdt-graph 0.2.0

An op-based 2P2P-Graph CRDT implementation in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

mod error;
mod graph;

pub use error::TwoPTwoPGraphError;
pub use graph::{
    TwoPTwoPAddEdge, TwoPTwoPAddVertex, TwoPTwoPGraph, TwoPTwoPId, TwoPTwoPRemoveEdge,
    TwoPTwoPRemoveVertex, UpdateOperation, UpdateType,
};