mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
d57a2a998c
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.41 to 1.0.42. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.41...1.0.42) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
1 KiB
TOML
40 lines
1 KiB
TOML
[package]
|
|
name = "navi"
|
|
version = "2.16.1"
|
|
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 = { version = "1.5.4", default-features = false, features = ["std", "unicode-perl"] }
|
|
clap = "3.0.0-beta.2"
|
|
crossterm = "0.20.0"
|
|
lazy_static = "1.4.0"
|
|
directories-next = "2.0.0"
|
|
walkdir = "2.3.1"
|
|
shellwords = "1.1.0"
|
|
anyhow = "1.0.42"
|
|
thiserror = "1.0.26"
|
|
strip-ansi-escapes = "0.1.0"
|
|
edit = "0.1.3"
|
|
remove_dir_all = "0.7.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.8"
|
|
|
|
[lib]
|
|
name = "navi"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "navi"
|
|
path = "src/bin/main.rs"
|
|
bench = false
|