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
16
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Resolve transport information for nearby nodes on the local-area network via multicast DNS
//! (mDNS).
mod actor;
mod api;
mod builder;
mod config;
#[cfg(feature = "supervisor")]
mod supervisor;
#[cfg(test)]
mod tests;

pub use api::{MdnsDiscovery, MdnsDiscoveryError};
pub use builder::Builder;
pub use config::MdnsDiscoveryMode;