Update readme.

This commit is contained in:
Nathan Vegdahl 2022-06-19 13:14:40 -07:00
parent 0fb23efa1f
commit 838707d114

View File

@ -5,14 +5,14 @@
A simple, zero-dependency command line argument parser for Rust. A simple, zero-dependency command line argument parser for Rust.
This crate is not intended to be everything for everyone. This crate is This crate is intended for the common use case of simple utility-like
meant to cover only the basic command line parsing needed by most command line argument parsing. It is explicitly *not* intended to
software, while staying simple and lightweight. If a feature seems to be handle complex command line interfaces (e.g. sub-commands,
missing--particularly if it's needed for more sophisticated sophisticated argument interdependencies, etc.). It's just a small,
interfaces--that is likely intentional. simple crate for basic argument and flag parsing, and that's it.
If you need an everything-and-the-kitchen-sink command line argument If you need an everything-and-the-kitchen-sink argument parser, consider
parser, consider [clap](https://crates.io/crates/clap). [clap](https://crates.io/crates/clap).
## License ## License