pollination 0.1.0

An experimental library exposing hybrid Raft and CRDT primitives.
Documentation
#[macro_use]
extern crate tracing;

mod constants;
mod ds;
pub mod engine;
pub mod flower;
//mod handle;
mod clock;
mod peer_info;
mod pollination;
mod propagativity;
mod router;
mod serialization;

pub mod connection;
pub mod message;
pub mod pollinator;
pub mod reality_token;
mod topic;

pub use flower::{Flower, FlowerBuilder, FlowerError};