From df44c72161633257ea2f558294701dd8471cfdaa Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Sat, 2 Oct 2021 11:17:35 +0200 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 79ca719..29eb457 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ A zero-dependency full type-safe argument parser. +It's corect enough for what it does. + `badargs` handles non Utf8 input by just printing an error and exiting the program gracefully. # How to use @@ -44,4 +46,10 @@ The other values can be `None` or `Some(_)` Automatic `--help` handling -(Maybe) adding metadata, for example for `--version` \ No newline at end of file +(Maybe) adding metadata, for example for `--version` + +# Why doesn't badargs have x? + +If you want a fully featured, even more type safe argument parser, use [Clap](https://github.com/clap-rs/clap), or [structopt](https://github.com/TeXitoi/structopt). + +These do have a lot of dependencies and/or proc macros, so they are a lot more heavy compilation wise. Badargs is perfect for you if you don't want or need that.