p2panda-net 0.6.0

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

//! Manage node information, bootstraps and their associated transport addresses and topics.
mod actor;
mod api;
mod builder;
pub mod report;
#[cfg(feature = "supervisor")]
mod supervisor;
#[cfg(test)]
mod tests;
pub mod watchers;

pub use api::{AddressBook, AddressBookError};
pub use builder::Builder;