crdt-graph 0.3.1

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

mod error;
pub mod flatbuffers;
mod graph;
pub mod types;

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