ringbuf 0.3.3

Lock-free SPSC FIFO ring buffer with direct access to inner data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: [push, pull_request]

jobs:
  build_and_test:
    name: ringbuf
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - run: cargo check --no-default-features
      - run: cargo check --no-default-features --features alloc
      - run: cargo test