miniarg 0.5.0

A minimal argument parser, with support for no-std and no-alloc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Install Rust
      uses: dtolnay/rust-toolchain@stable
    - name: Build
      uses: clechasseur/rs-cargo@v3
      with:
        command: build
    - name: Run tests
      uses: clechasseur/rs-cargo@v3
      with:
        command: test
        args: --all-features