seqlock 0.2.0

A reader-writer lock that provides extremely fast read access without starving writers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
on: [push, pull_request]

name: Continuous integration

jobs:
  build:
    name: Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@nightly
        with:
          components: rustfmt
      - run: cargo fmt -- --check
      - run: cargo test