2020-03-04 21:01:23 +00:00
|
|
|
[package]
|
|
|
|
name = "navi"
|
2020-03-16 01:13:18 +00:00
|
|
|
version = "2.1.1"
|
2020-03-04 21:01:23 +00:00
|
|
|
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
|
|
|
|
edition = "2018"
|
2020-03-15 22:47:00 +00:00
|
|
|
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"
|
2020-03-15 22:49:38 +00:00
|
|
|
keywords = ["cheatsheets", "terminal", "cli", "tui", "shell"]
|
2020-03-15 22:47:00 +00:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
license = "Apache-2.0"
|
2020-03-04 21:01:23 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
regex = "1.3.4"
|
|
|
|
structopt = "0.3"
|
|
|
|
termion = "1.5.5"
|
2020-03-07 21:03:51 +00:00
|
|
|
raw_tty = "0.1.0"
|
|
|
|
lazy_static = "1.4.0"
|
2020-03-15 16:46:58 +00:00
|
|
|
dirs = "2.0.0"
|
2020-03-11 23:26:00 +00:00
|
|
|
terminal_size = "0.1.10"
|
2020-03-15 17:06:25 +00:00
|
|
|
walkdir = "2"
|
|
|
|
|
2020-03-16 11:02:23 +00:00
|
|
|
[dependencies.git2]
|
|
|
|
version = "0.10.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["https"]
|
2020-03-15 22:47:00 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
bench = false
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "navi"
|