https://github.com/murphsicles/clap
Command line argument parser
https://github.com/murphsicles/clap
Last synced: 22 days ago
JSON representation
Command line argument parser
- Host: GitHub
- URL: https://github.com/murphsicles/clap
- Owner: murphsicles
- License: mit
- Created: 2026-05-15T00:36:23.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-06-02T15:29:23.000Z (about 2 months ago)
- Last Synced: 2026-06-02T17:10:31.350Z (about 2 months ago)
- Size: 20.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @cli/clap
Full command-line argument parser for Zeta, ported from Rust's `clap` v4.6.1.
## Usage
```zeta
use clap::Command;
let matches = Command::new("myapp")
.about("Does awesome things")
.arg(clap::arg!(--output ).help("Output file"))
.get_matches();
```
## License
MIT © Zeta Foundation