2020-03-04 18:01:23 -03:00
|
|
|
[package]
|
|
|
|
name = "navi"
|
2021-08-09 10:47:24 -03:00
|
|
|
version = "2.17.0"
|
2020-03-04 18:01:23 -03:00
|
|
|
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
|
|
|
|
edition = "2018"
|
2020-03-15 19:47:00 -03: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 19:49:38 -03:00
|
|
|
keywords = ["cheatsheets", "terminal", "cli", "tui", "shell"]
|
2020-03-15 19:47:00 -03:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
license = "Apache-2.0"
|
2020-03-04 18:01:23 -03:00
|
|
|
|
2020-03-16 14:16:48 +08:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "denisidoro/navi", branch = "master" }
|
|
|
|
|
2020-03-04 18:01:23 -03:00
|
|
|
[dependencies]
|
2021-05-17 09:50:23 -03:00
|
|
|
regex = { version = "1.5.4", default-features = false, features = ["std", "unicode-perl"] }
|
2021-08-16 20:21:23 -03:00
|
|
|
clap = "3.0.0-beta.4"
|
2021-06-15 10:16:54 -03:00
|
|
|
crossterm = "0.20.0"
|
2020-03-07 18:03:51 -03:00
|
|
|
lazy_static = "1.4.0"
|
2021-04-04 17:54:36 -03:00
|
|
|
directories-next = "2.0.0"
|
2020-08-28 09:29:19 -03:00
|
|
|
walkdir = "2.3.1"
|
|
|
|
shellwords = "1.1.0"
|
2021-08-16 20:21:49 -03:00
|
|
|
anyhow = "1.0.43"
|
2021-07-05 21:36:04 -03:00
|
|
|
thiserror = "1.0.26"
|
2020-08-28 09:12:44 -03:00
|
|
|
strip-ansi-escapes = "0.1.0"
|
2021-04-04 17:54:36 -03:00
|
|
|
edit = "0.1.3"
|
2021-04-06 09:47:37 -03:00
|
|
|
remove_dir_all = "0.7.0"
|
2021-04-17 10:17:22 -03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
2020-03-15 14:06:25 -03:00
|
|
|
|
2020-03-19 09:19:50 -03:00
|
|
|
[lib]
|
|
|
|
name = "navi"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2020-03-15 19:47:00 -03:00
|
|
|
[[bin]]
|
|
|
|
name = "navi"
|
2020-03-19 09:19:50 -03:00
|
|
|
path = "src/bin/main.rs"
|
|
|
|
bench = false
|