navi/Cargo.toml

57 lines
1.4 KiB
TOML
Raw Normal View History

2020-03-05 00:01:23 +03:00
[package]
name = "navi"
2023-12-10 12:30:45 +03:00
version = "2.23.0"
2020-03-05 00:01:23 +03:00
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
edition = "2021"
2020-03-16 01: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-16 01:49:38 +03:00
keywords = ["cheatsheets", "terminal", "cli", "tui", "shell"]
2020-03-16 01:47:00 +03:00
categories = ["command-line-utilities"]
license = "Apache-2.0"
2020-03-05 00:01:23 +03:00
[features]
disable-command-execution = []
disable-repo-management = []
2020-03-16 09:16:48 +03:00
[badges]
travis-ci = { repository = "denisidoro/navi", branch = "master" }
2020-03-05 00:01:23 +03:00
[dependencies]
2023-12-10 12:30:45 +03:00
regex = { version = "1.7.3", default-features = false, features = [
"std",
"unicode-perl",
] }
2023-04-04 12:49:16 +03:00
clap = { version = "4.2.1", features = ["derive", "cargo"] }
2023-04-09 01:28:42 +03:00
crossterm = "0.26.1"
2020-03-08 00:03:51 +03:00
lazy_static = "1.4.0"
2023-04-22 14:51:14 +03:00
etcetera = "0.7.1"
2023-04-09 01:28:42 +03:00
walkdir = "2.3.3"
2020-08-28 15:29:19 +03:00
shellwords = "1.1.0"
2023-04-09 01:28:42 +03:00
anyhow = "1.0.70"
thiserror = "1.0.40"
strip-ansi-escapes = "0.1.1"
edit = "0.1.4"
2023-04-09 01:28:42 +03:00
remove_dir_all = "0.8.2"
serde = { version = "1.0.159", features = ["derive"] }
serde_yaml = "0.9.21"
2023-04-09 01:38:50 +03:00
dns_common_derive = { version = "0.2.1" }
2023-12-10 12:30:45 +03:00
dns_common = { version = "0.2.1", default-features = false, features = [
"yaml",
"json",
] }
unicode-width = "0.1.10"
2020-03-15 20:06:25 +03:00
[target.'cfg(windows)'.dependencies]
dunce = "1"
[lib]
name = "navi"
path = "src/lib.rs"
2020-03-16 01:47:00 +03:00
[[bin]]
name = "navi"
path = "src/bin/main.rs"
bench = false