atomicbox 0.4.0

Safe atomic pointers to boxed data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: CI

on: [push, pull_request]

env:
  RUST_BACKTRACE: 1

jobs:
  ci:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Run tests
      run: cargo test --verbose
    - name: Check README.md is up to date
      run: cargo install cargo-readme && cargo readme > README.md && git diff --quiet