diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-19 16:46:27 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-19 16:46:27 +0800 |
| commit | 5ade48bc29d275d4d71118aaf2efa2dfce91723c (patch) | |
| tree | 3c6b14ba147d30ff3b2e9d4134796a1b31995128 /src/bin | |
| parent | bb5992bf37defe52a52c042a04877f05f0a42909 (diff) | |
Add libjvcli as a dynamic library target
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/jv.rs | 2 | ||||
| -rw-r--r-- | src/bin/jvn.rs | 10 | ||||
| -rw-r--r-- | src/bin/jvn_comp.rs | 2 | ||||
| -rw-r--r-- | src/bin/jvv.rs | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/bin/jv.rs b/src/bin/jv.rs index 0df6b32..27601e6 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -121,7 +121,7 @@ use cli_utils::legacy::{ push_version, socket_addr_helper, }; use just_enough_vcs::utils::tcp_connection::error::TcpTargetError; -use just_enough_vcs_cli::{ +use jvcli::{ data::{ compile_info::CompileInfo, ipaddress_history::{get_recent_ip_address, insert_recent_ip_address}, diff --git a/src/bin/jvn.rs b/src/bin/jvn.rs index f35e3f8..48b90c5 100644 --- a/src/bin/jvn.rs +++ b/src/bin/jvn.rs @@ -5,7 +5,11 @@ use std::{ }; use cli_utils::legacy::{display::md, env::current_locales, levenshtein_distance}; -use just_enough_vcs_cli::{ +use just_progress::{ + progress, + renderer::{ProgressSimpleRenderer, RendererTheme}, +}; +use jvcli::{ special_argument, special_flag, systems::{ cmd::{ @@ -21,10 +25,6 @@ use just_enough_vcs_cli::{ }, }, }; -use just_progress::{ - progress, - renderer::{ProgressSimpleRenderer, RendererTheme}, -}; use log::{LevelFilter, error, info, trace, warn}; use rust_i18n::{set_locale, t}; use tokio::io::{self, AsyncReadExt, AsyncWriteExt}; diff --git a/src/bin/jvn_comp.rs b/src/bin/jvn_comp.rs index 463fdd6..ea9aaa8 100644 --- a/src/bin/jvn_comp.rs +++ b/src/bin/jvn_comp.rs @@ -2,7 +2,7 @@ use std::{fs::OpenOptions, process::exit}; use clap::Parser; use env_logger::Target; -use just_enough_vcs_cli::systems::{ +use jvcli::systems::{ cmd::_commands::jv_cmd_nodes, comp::{ _comps::{jv_cmd_comp_nodes, match_comp}, diff --git a/src/bin/jvv.rs b/src/bin/jvv.rs index 885f3e0..4872679 100644 --- a/src/bin/jvv.rs +++ b/src/bin/jvv.rs @@ -40,8 +40,8 @@ use just_enough_vcs::{ }, utils::cfg_file::config::ConfigFile, }; -use just_enough_vcs_cli::data::compile_info::CompileInfo; use just_fmt::pascal_case; +use jvcli::data::compile_info::CompileInfo; use log::{error, info}; use rust_i18n::{set_locale, t}; use tokio::fs::{self}; |
