viewstamped-replication 0.2.0

A Rust-based implementation of the Viewstamped Replication consensus protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Linters

on: [ push, workflow_dispatch ]

jobs:
  lint:
    name: Lint & Format
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2.7.1
      - name: Lint
        run: cargo clippy --all-features
      - name: Format
        run: cargo fmt