From 8a553f4de85891c40965a9100f2853034919b6c8 Mon Sep 17 00:00:00 2001
From: Awiteb
Date: Mon, 5 May 2025 19:47:14 +0000
Subject: [PATCH] deps: Add `convert_case@0.8.0` to the dependencies
Signed-off-by: Awiteb
---
Cargo.lock | 16 ++++++++++++++++
Cargo.toml | 1 +
2 files changed, 17 insertions(+)
diff --git a/Cargo.lock b/Cargo.lock
index 6bb8cb3..60d60a5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -363,6 +363,15 @@ version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
+[[package]]
+name = "convert_case"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
+dependencies = [
+ "unicode-segmentation",
+]
+
[[package]]
name = "cpufeatures"
version = "0.2.17"
@@ -848,6 +857,7 @@ version = "0.0.0"
dependencies = [
"clap",
"clap-verbosity-flag",
+ "convert_case",
"easy-ext",
"nostr",
"nostr-sdk",
@@ -1619,6 +1629,12 @@ dependencies = [
"tinyvec",
]
+[[package]]
+name = "unicode-segmentation"
+version = "1.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
+
[[package]]
name = "universal-hash"
version = "0.5.1"
diff --git a/Cargo.toml b/Cargo.toml
index 1de12b8..3abd09d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,6 +15,7 @@ clap = { version = "4.5.37", features = ["derive"] }
clap-verbosity-flag = { version = "3.0.2", default-features = false, features = [
"tracing",
] }
+convert_case = "0.8.0"
easy-ext = "1.0.2"
nostr = { version = "0.41.0", features = ["parser"] }
nostr-sdk = "0.41.0"