pollination 0.1.0

An experimental library exposing hybrid Raft and CRDT primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

// TODO: AFAICT Tonic doesn't support generic RPCs
// so this is a gross workaround for now.
#[derive(Debug, Deserialize, Serialize)]
pub struct TonicReqWrapper {
    pub raw: Vec<u8>,
}

include!(concat!(env!("OUT_DIR"), "/bincode.gossip.Gossip.rs"));