Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcusgrass/tiny-cli
A tiny no-std cli lib
https://github.com/marcusgrass/tiny-cli
Last synced: 21 days ago
JSON representation
A tiny no-std cli lib
- Host: GitHub
- URL: https://github.com/marcusgrass/tiny-cli
- Owner: MarcusGrass
- License: mpl-2.0
- Created: 2023-07-13T13:56:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-10T19:34:14.000Z (over 1 year ago)
- Last Synced: 2024-11-08T05:12:37.456Z (2 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Tiny-cli
A minimal macro supporting arg-parsing, mostly intended for use with [tiny-std](https://github.com/MarcusGrass/tiny-std).## Features
1. Required args.
2. Optional args.
3. Repeating args.
4. Subcommands.
5. Minimal help-docs.
6. `no_std`
7. No proc macros.## Recommendations
Don't use this if you don't need to, if you need a full-featured arg-parser, [clap](https://docs.rs/clap/latest/clap/)
will likely give you less of a headache.