distributed-topic-tracker 0.3.1

automagically find peers interested in a topic + iroh-gossip integration
Documentation
1
2
3
4
5
6
7
8
9
10
//! Topic management: bootstrap, publishing, and peer merging.

mod bootstrap;
mod publisher;
#[allow(clippy::module_inception)]
mod topic;

pub use bootstrap::Bootstrap;
pub use publisher::Publisher;
pub use topic::Topic;