diff --git a/Cargo.toml b/Cargo.toml index d0b818c..41fd5d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,20 @@ [package] name = "seahorse" -version = "0.6.1" +version = "0.6.2" authors = ["ksk001100 "] edition = "2018" -keywords = ["cli"] +keywords = [ + "argument", + "cli", + "arg", + "parser", + "parse" +] +categories = ["command-line-interface"] repository = "https://github.com/ksk001100/seahorse" readme = "README.md" license-file = "LICENSE" +documentation = "https://docs.rs/seahorse/" description = "A minimal CLI framework written in Rust" [dependencies] diff --git a/README.md b/README.md index 7c042cf..8583480 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ To use seahorse, add this to your Cargo.toml: ```toml [dependencies] -seahorse = "0.6.1" +seahorse = "0.6.2" ``` ## Example