arbitrary-int 2.1.1

Modern and lightweight implementation of u2, u3, u4, ..., u127.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Rustdoc has a few lints that aren't included in `cargo check`: https://doc.rust-lang.org/rustdoc/lints.html
name: check documentation
run-name: ${{ github.actor }}'s patch
on: [push, pull_request]

jobs:
  check-documentation:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions-rust-lang/setup-rust-toolchain@v1
      - run: cargo doc
        env:
          RUSTDOCFLAGS: "-D warnings"