p2panda-net 0.6.1

Data-type-agnostic p2p networking, discovery, gossip and local-first sync
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Eventually consistent, local-first sync protocol based on append-only logs.
mod api;
mod builder;
#[cfg(test)]
mod tests;

pub use api::{LogSync, LogSyncError};
pub use builder::Builder;

const LOG_SYNC_PROTOCOL_ID: &[u8] = b"p2panda/log_sync/v1";