summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-14 17:17:48 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-14 17:17:48 +0800
commit0cd19e64d4d255e45233255478ca3a0bd5c439ae (patch)
tree6bfa39c10731328edacc6b1c86ae49c85197f7ed /Cargo.toml
parent24c2c8cad43c755cf668ea92a08c0be7fb3b819d (diff)
feat: add internationalization support and new command-line tools
- Add locale support with English and Chinese translations - Introduce new jv and jvv command-line tools - Replace jvc.rs with improved command structure - Add utility modules for language selection and markdown coloring - Update configuration and dependencies
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 11 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0adc8f5..a800431 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,10 +2,6 @@
name = "just_enough_vcs_cli"
edition = "2024"
-[dependencies.just_enough_vcs]
-git = "https://github.com/JustEnoughVCS/VersionControl"
-features = ["all"]
-
[workspace]
members = ["crates/cli_publisher"]
@@ -32,9 +28,13 @@ panic = "abort"
strip = "symbols"
[dependencies]
+# Just Enough VCS
+just_enough_vcs = { git = "https://github.com/JustEnoughVCS/VersionControl", features = [
+ "all",
+] }
# Command Line
-clap = "4.5"
+clap = { version = "4.5", features = ["derive"] }
# Logging
log = "0.4"
@@ -45,3 +45,9 @@ tokio = { version = "1", features = ["full"] }
# Color
colored = "2.0"
+
+# i18n
+rust-i18n = "3"
+
+# Regex
+regex = "1.12.1"