diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-10-14 17:17:48 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-10-14 17:17:48 +0800 |
| commit | 0cd19e64d4d255e45233255478ca3a0bd5c439ae (patch) | |
| tree | 6bfa39c10731328edacc6b1c86ae49c85197f7ed /.cargo | |
| parent | 24c2c8cad43c755cf668ea92a08c0be7fb3b819d (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')
| -rw-r--r-- | .cargo/config.toml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 663077d..6be452a 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,6 +1,16 @@ [build] target-dir = "./.temp/target/" +[alias] +dev = "run --manifest-path crates/cli_publisher/Cargo.toml" +release = "run --manifest-path crates/cli_publisher/Cargo.toml --release" + [publish] target-dir = "./.temp/publish/" -binaries = ["jvc", "jvc.exe"] +binaries = [ + "jv", + "jv.exe", + + "jvv", + "jvv.exe" +] |
