navi/Cargo.toml
2021-04-04 17:54:36 -03:00

39 lines
922 B
TOML

[package]
name = "navi"
version = "2.14.0"
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
edition = "2018"
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"
[badges]
travis-ci = { repository = "denisidoro/navi", branch = "master" }
[dependencies]
regex = "1.4.3"
clap = "3.0.0-beta.2"
termion = "1.5.6"
raw_tty = "0.1.0"
lazy_static = "1.4.0"
directories-next = "2.0.0"
terminal_size = "0.1.16"
walkdir = "2.3.1"
shellwords = "1.1.0"
anyhow = "1.0.38"
thiserror = "1.0.24"
strip-ansi-escapes = "0.1.0"
edit = "0.1.3"
[lib]
name = "navi"
path = "src/lib.rs"
[[bin]]
name = "navi"
path = "src/bin/main.rs"
bench = false