navi/Cargo.toml

40 lines
921 B
TOML
Raw Normal View History

2020-03-05 00:01:23 +03:00
[package]
name = "navi"
version = "2.13.0"
2020-03-05 00:01:23 +03:00
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
edition = "2018"
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
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]
2020-08-28 15:29:19 +03:00
regex = "1.3.9"
structopt = "0.3.17"
2020-03-05 00:01:23 +03:00
termion = "1.5.5"
2020-03-08 00:03:51 +03:00
raw_tty = "0.1.0"
lazy_static = "1.4.0"
directories-next = "1.0.1"
2020-08-28 15:29:19 +03:00
terminal_size = "0.1.13"
walkdir = "2.3.1"
shellwords = "1.1.0"
anyhow = "1.0.32"
thiserror = "1.0.20"
strip-ansi-escapes = "0.1.0"
2020-11-21 21:42:35 +03:00
edit = "0.1.2"
2020-03-15 20:06:25 +03:00
[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