summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Isidoro <denisidoro@users.noreply.github.com>2023-12-10 06:37:30 -0300
committerGitHub <noreply@github.com>2023-12-10 06:37:30 -0300
commit430c9729e18ac2593d9b085a537a664147e5786f (patch)
tree283e868bb36864263b8605ec75c6f85e2f73073b
parente1c2699e8322fbb7a13e98ba989a3c98322c3093 (diff)
parent4720f0eaef1a7424ff21731147a9cbb630554732 (diff)
Merge pull request #865 from denisidoro/2.23v2.23.0
Bump to 2.23.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml12
2 files changed, 10 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a379f1b..a38361f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -454,7 +454,7 @@ dependencies = [
[[package]]
name = "navi"
-version = "2.22.1"
+version = "2.23.0"
dependencies = [
"anyhow",
"clap",
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]