braid-core 0.1.4

Unified Braid Protocol implementation in Rust, including Braid-HTTP, Antimatter CRDT, and BraidFS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod algorithm;
pub mod antimatter;
pub mod crdt_trait;
pub mod json_crdt;
pub mod messages;
pub mod sequence_crdt;
pub mod state;
pub mod utils;

#[cfg(test)]
mod tests;

pub use antimatter::AntimatterCrdt;
pub use crdt_trait::PrunableCrdt;
pub use messages::Message;