summaryrefslogtreecommitdiff
path: root/legacy_data/src/data/local/local_files.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-25 15:24:18 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-25 15:24:18 +0800
commitfcbd18c4b7d90388a9a2b9e28555d2526727958c (patch)
tree0de680895d6a162a99356d6e4d733942a339275e /legacy_data/src/data/local/local_files.rs
parent8b96e8171c4e9d6516fd63d37cbe613bd5927a04 (diff)
Replace string_proc with just_fmt as external dependency
Diffstat (limited to 'legacy_data/src/data/local/local_files.rs')
-rw-r--r--legacy_data/src/data/local/local_files.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/legacy_data/src/data/local/local_files.rs b/legacy_data/src/data/local/local_files.rs
index 9cc244f..2f02b32 100644
--- a/legacy_data/src/data/local/local_files.rs
+++ b/legacy_data/src/data/local/local_files.rs
@@ -1,6 +1,6 @@
use std::path::{Path, PathBuf};
-use string_proc::format_path::format_path;
+use just_fmt::fmt_path::fmt_path;
use tokio::fs;
use crate::constants::CLIENT_FOLDER_WORKSPACE_ROOT_NAME;
@@ -59,7 +59,7 @@ async fn format_input_paths(
continue;
}
- match format_path(path) {
+ match fmt_path(path) {
Ok(path) => real_paths.push(path),
Err(e) => {
return Err(std::io::Error::new(