grapevine 1.0.0

A modern, asynchronous peer-to-peer gossip protocol library and application
Documentation
1
2
3
4
5
6
7
8
9
//! Gossip protocol implementations.

pub mod anti_entropy;
pub mod epidemic;
pub mod gossip;

pub use anti_entropy::{AntiEntropy, AntiEntropyConfig, MessageEntry};
pub use epidemic::EpidemicConfig;
pub use gossip::Gossip;