p2panda-net 0.6.1

Data-type-agnostic p2p networking, discovery, gossip and local-first sync
Documentation
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Confidential topic discovery and random-walk strategy to resolve transport infos.
mod actors;
mod api;
mod backoff;
mod builder;
mod config;
mod events;
#[cfg(feature = "supervisor")]
mod supervisor;
#[cfg(test)]
mod tests;

pub use actors::DiscoveryMetrics;
pub use api::{Discovery, DiscoveryError};
pub use builder::Builder;
pub use config::DiscoveryConfig;
pub use events::{DiscoveryEvent, SessionRole};