paros 0.1.0

Learning the Paxos consensus algorithm by implementing it in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Paros — learning the Paxos consensus algorithm by implementing it in Rust.
//!
//! A learning project, work in progress.

#[cfg(test)]
mod tests {
    #[test]
    fn placeholder() {
        // Replaced by real Paxos tests as the implementation grows.
    }
}