micromap 0.3.0

The fastest alternative to HashMap, for maps smaller than 20 keys
Documentation
# SPDX-FileCopyrightText: Copyright (c) 2023-2026 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: cargo
'on':
  push:
  pull_request:
concurrency:
  group: ${{ github.ref }}
  cancel-in-progress: true
jobs:
  build:
    timeout-minutes: 15
    runs-on: ubuntu-24.04
    env:
      CARGO_TERM_COLOR: always
    steps:
      - uses: actions/checkout@v6
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - run: cargo test --all-features -- --show-output
      - run: cargo test --release --all-features -- --show-output
      - run: cargo fmt --check
      - run: cargo doc --no-deps
      - run: cargo clippy -- --no-deps