1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Kan-Ru Chen <kanru@kanru.info>
Date: Tue, 4 Jun 2024 07:55:07 +0900
Subject: Remove unused optional dependencies
Forwarded: not-needed
---
tools/Cargo.toml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tools/Cargo.toml b/tools/Cargo.toml
index f40b55b..a24f69b 100644
--- a/tools/Cargo.toml
+++ b/tools/Cargo.toml
@@ -9,7 +9,3 @@ edition = "2024"
anyhow = "1.0.0"
chewing = { version = "0.10.3", path = "..", features = ["sqlite"] }
clap = { version = "4.4.18", features = ["derive"] }
-clap_mangen = { version = "0.2.12", optional = true }
-
-[features]
-mangen = ["dep:clap_mangen"]
|