poldercast 1.1.1

Peer to Peer topology management
Documentation
#[cfg(test)]
#[macro_use(quickcheck)]
extern crate quickcheck_macros;

mod gossip;
pub mod layer;
mod priority_map;
mod profile;
mod profiles;
mod topic;
mod topology;

pub use self::{
    gossip::{Gossip, GossipError, GossipSlice},
    profile::Profile,
    topic::{
        InterestLevel, Subscription, SubscriptionError, SubscriptionIter, SubscriptionSlice,
        Subscriptions, SubscriptionsSlice, Topic,
    },
    topology::Topology,
};
pub(crate) use self::{priority_map::PriorityMap, profiles::Profiles};