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-FileCopyrightText: Copyright (c) 2025 owtotwo
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: docs
'on':
  push:
  pull_request:
jobs:
  build:
    timeout-minutes: 15
    runs-on: ubuntu-24.04
    env:
      CARGO_TERM_COLOR: always
      RUSTDOCFLAGS: '--cfg docsrs'
    steps:
      - uses: actions/checkout@v6
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
      - run: cargo +nightly test --doc --all-features -- --show-output
      - run: cargo +nightly doc --all-features --no-deps