From 5029722fc6a824a75bb18263e3c7998bbcc69883 Mon Sep 17 00:00:00 2001 From: Denis Isidoro Date: Sun, 15 Mar 2020 19:47:00 -0300 Subject: [PATCH] Add more labels to Cargo.toml --- Cargo.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 678bc95..b2e7071 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,13 @@ name = "navi" version = "2.1.0" authors = ["Denis Isidoro "] edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +description = "An interactive cheatsheet tool for the command-line" +homepage = "https://github.com/denisidoro/navi" +documentation = "https://github.com/denisidoro/navi" +repository = "https://github.com/denisidoro/navi" +keywords = ["cheatsheets", "terminal", "cli", "tui", "shell", "snippets"] +categories = ["command-line-utilities"] +license = "Apache-2.0" [dependencies] regex = "1.3.4" @@ -21,3 +26,8 @@ openssl = { version = '0.10', optional = true } [features] default = [] vendored-openssl = ["openssl/vendored"] + +[[bin]] +bench = false +path = "src/main.rs" +name = "navi"