summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Isidoro <denis.isidoro@uber.com>2023-12-10 06:30:45 -0300
committerDenis Isidoro <denis.isidoro@uber.com>2023-12-10 06:30:45 -0300
commit3ed1f0dd55c68d108b7d1224d8eeb69e51e312f8 (patch)
tree5e9153c643dad285186d02df93d7a79f4259cf27
parente1c2699e8322fbb7a13e98ba989a3c98322c3093 (diff)
Dec-10 06h30: Cargo.toml
-rw-r--r--Cargo.toml12
1 files changed, 9 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index fa054cc..a7b9402 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "navi"
-version = "2.22.1"
+version = "2.23.0"
authors = ["Denis Isidoro <denis_isidoro@live.com>"]
edition = "2021"
description = "An interactive cheatsheet tool for the command-line"
@@ -19,7 +19,10 @@ disable-repo-management = []
travis-ci = { repository = "denisidoro/navi", branch = "master" }
[dependencies]
-regex = { version = "1.7.3", default-features = false, features = ["std", "unicode-perl"] }
+regex = { version = "1.7.3", default-features = false, features = [
+ "std",
+ "unicode-perl",
+] }
clap = { version = "4.2.1", features = ["derive", "cargo"] }
crossterm = "0.26.1"
lazy_static = "1.4.0"
@@ -34,7 +37,10 @@ remove_dir_all = "0.8.2"
serde = { version = "1.0.159", features = ["derive"] }
serde_yaml = "0.9.21"
dns_common_derive = { version = "0.2.1" }
-dns_common = { version = "0.2.1", default-features = false, features = ["yaml", "json"] }
+dns_common = { version = "0.2.1", default-features = false, features = [
+ "yaml",
+ "json",
+] }
unicode-width = "0.1.10"
[target.'cfg(windows)'.dependencies]