From 0cd19e64d4d255e45233255478ca3a0bd5c439ae Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 14 Oct 2025 17:17:48 +0800 Subject: 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 --- Cargo.toml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'Cargo.toml') 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" -- cgit