summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 7d0c17287d147d839b2e7cd8bed3e0f06632f185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "navi"
version = "2.20.0"
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
edition = "2021"
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"]
categories = ["command-line-utilities"]
license = "Apache-2.0"

[features]
disable-command-execution = []
disable-repo-management = []

[badges]
travis-ci = { repository = "denisidoro/navi", branch = "master" }

[dependencies]
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-perl"] }
clap = { version = "3.1.18", features = ["derive", "cargo"] }
crossterm = "0.23.2"
lazy_static = "1.4.0"
directories-next = "2.0.0"
walkdir = "2.3.2"
shellwords = "1.1.0"
anyhow = "1.0.57"
thiserror = "1.0.31"
strip-ansi-escapes = "0.1.1"
edit = "0.1.3"
remove_dir_all = "0.7.0"
serde = { version = "1.0.137", features = ["derive"] }
serde_yaml = "0.8.24"

[lib]
name = "navi"
path = "src/lib.rs"

[[bin]]
name = "navi"
path = "src/bin/main.rs"
bench = false