arena64 0.3.1

A concurrent arena providing mutually exclusive access over indexes
Documentation
version: "3"

tasks:
  default:
    cmds:
      - task: test
      - task: clippy-tests

  test:
    cmds:
      - cargo test -- --nocapture

  test-strict-provenance:
    cmds:
      - cargo test --features strict_provenance -- --nocapture

  clippy-tests:
    cmds:
      - cargo clippy --tests

  doc:
    cmds:
      - cargo +nightly doc --open
    env:
      RUSTDOCFLAGS: --cfg docsrs

  bench:
    env:
      RUSTFLAGS: -C target-cpu=native
    cmds:
      - cargo bench --profile release -p arena64-bench