p2panda-sync 0.7.0

Local-first sync for append-only logs and traits to build your own
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Implementations of the `Protocol` trait for two-party topic handshake and sync.
mod log_sync;
mod topic_handshake;
mod topic_log_sync;

pub use log_sync::*;
pub use topic_handshake::*;
pub use topic_log_sync::*;