viewstamped-replication 0.5.0

A Rust-based implementation of the Viewstamped Replication consensus protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A Primary Copy Method to Support Highly-Available Distributed Systems.

mod client;
mod client_table;
mod health;
mod identifiers;
mod mailbox;
mod model;
mod replica;
mod service;
mod stamps;