mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 11:33:10 +00:00
Add more labels to Cargo.toml
This commit is contained in:
parent
7d7441d6c2
commit
5029722fc6
1 changed files with 12 additions and 2 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -3,8 +3,13 @@ name = "navi"
|
||||||
version = "2.1.0"
|
version = "2.1.0"
|
||||||
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
|
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
description = "An interactive cheatsheet tool for the command-line"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
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]
|
[dependencies]
|
||||||
regex = "1.3.4"
|
regex = "1.3.4"
|
||||||
|
@ -21,3 +26,8 @@ openssl = { version = '0.10', optional = true }
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
vendored-openssl = ["openssl/vendored"]
|
vendored-openssl = ["openssl/vendored"]
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
bench = false
|
||||||
|
path = "src/main.rs"
|
||||||
|
name = "navi"
|
||||||
|
|
Loading…
Reference in a new issue