From d70a36858f4006f001fe9db2bc20022e29506139 Mon Sep 17 00:00:00 2001 From: Nilstrieb Date: Sat, 2 Oct 2021 00:10:23 +0200 Subject: [PATCH] added todo --- Cargo.toml | 8 ++++++++ README.md | 8 +++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5ebe84a..e64b301 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,14 @@ name = "badargs" version = "0.1.0" edition = "2018" +license = "MIT" +description = "Type safe zero-dependency argument parser" +homepage = "https://github.com/Nilstrieb/badargs" +repository = "https://github.com/Nilstrieb/badargs" +readme = "README.md" +keywords = ["argument-parsing", "zero-dependency", "type-safe"] +categories = ["Command-line interface"] + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 6aaebef..79ca719 100644 --- a/README.md +++ b/README.md @@ -38,4 +38,10 @@ The following return types are currently available: * usize Boolean values can only be `None` or `Some`. -The other values can be `None` or `Some(_)` \ No newline at end of file +The other values can be `None` or `Some(_)` + +# Todo + +Automatic `--help` handling + +(Maybe) adding metadata, for example for `--version` \ No newline at end of file