rust-lockless-slotmap 0.1.3

A (mostly) lockless slotmap implementation in Rust
Documentation
name: Rust CI

on:
    push:
        branches: [ "master" ]
    pull_request:
        branches: [ "master" ]

env:
    CARGO_TERM_COLOR: always

jobs:
    build:
        runs-on: ubuntu-latest
        timeout-minutes: 10

        steps:
           - uses: actions/checkout@v2
           - name: Build
             run: cargo build --verbose
           - name: Test
             run: cargo test --verbose