navi/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2020-03-04 21:01:23 +00:00
[package]
name = "navi"
2022-01-18 11:55:39 +00:00
version = "2.19.0"
2020-03-04 21:01:23 +00:00
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
edition = "2021"
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
[features]
disable-command-execution = []
disable-repo-management = []
2020-03-16 06:16:48 +00:00
[badges]
travis-ci = { repository = "denisidoro/navi", branch = "master" }
2020-03-04 21:01:23 +00:00
[dependencies]
regex = { version = "1.5.4", default-features = false, features = ["std", "unicode-perl"] }
2022-01-12 11:50:55 +00:00
clap = { version = "3.0.6", features = ["derive", "cargo"] }
crossterm = "0.23.0"
2020-03-07 21:03:51 +00:00
lazy_static = "1.4.0"
2021-04-04 20:54:36 +00:00
directories-next = "2.0.0"
2020-08-28 12:29:19 +00:00
walkdir = "2.3.1"
shellwords = "1.1.0"
anyhow = "1.0.53"
thiserror = "1.0.30"
strip-ansi-escapes = "0.1.1"
2021-04-04 20:54:36 +00:00
edit = "0.1.3"
2021-04-06 12:47:37 +00:00
remove_dir_all = "0.7.0"
2021-04-17 13:17:22 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
2020-03-15 17:06:25 +00:00
[lib]
name = "navi"
path = "src/lib.rs"
2020-03-15 22:47:00 +00:00
[[bin]]
name = "navi"
path = "src/bin/main.rs"
bench = false