interner 0.2.1

A string, path, and buffer internment crate with no dependencies.
Documentation
# Why run Miri when there is no unsafe code? Because Miri can produce memory
# effects to better test atomic usages.

name: Miri

on: [push]

jobs:
  test:
    runs-on: ubuntu-latest
    timeout-minutes: 30
    steps:
      - uses: actions/checkout@v2

      - name: Install Rust
        uses: hecrj/setup-rust-action@v1
        with:
          rust-version: nightly
          components: miri

      - name: Run unit tests
        run: |
          cargo miri test
        env:
          RUST_BACKTRACE: 1