summaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-22 08:32:29 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-22 08:32:29 +0800
commitaca8b408755f9041da9ee083c625de2a8d8c6785 (patch)
tree5747d389d5218ccf39e2153ae1346f7b5bfe8fb8 /.cargo
parent0d614f3e2104e9b840ebc7e53a6caa6af1671636 (diff)
Refactor CLI command processing with new architecture
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index ca6a8cb..f79321e 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -4,6 +4,7 @@ target-dir = "./.temp/target/"
[publish]
target-dir = "./.temp/deploy/"
binaries = [
+ # The legacy command line
"jv",
"jv.exe",
@@ -11,7 +12,11 @@ binaries = [
"jvv.exe",
"jvii",
- "jvii.exe"
+ "jvii.exe",
+
+ # The new command line
+ "jvn",
+ "jvn.exe"
]
############