From 3413f6c8f449ca7aa29950b3c7fdb658c46bc526 Mon Sep 17 00:00:00 2001 From: jackwener Date: Thu, 16 Apr 2026 23:31:41 +0800 Subject: [PATCH] fix: move anyhow/chrono/dirs/md5/regex back to [dependencies] section --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7985c99..7e3cabd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,10 +38,6 @@ pbkdf2 = "0.12" # 解压 zstd = "0.13" -# IPC Windows named pipe(Unix 直接用 tokio::net::UnixListener) -[target.'cfg(windows)'.dependencies] -interprocess = { version = "2", features = ["tokio"] } - # 错误处理 anyhow = "1" @@ -57,6 +53,10 @@ md5 = "0.7" # 正则表达式 regex = "1" +# IPC Windows named pipe(Unix 直接用 tokio::net::UnixListener) +[target.'cfg(windows)'.dependencies] +interprocess = { version = "2", features = ["tokio"] } + [target.'cfg(unix)'.dependencies] libc = "0.2"