修复windows下kill_tree包特性处理

This commit is contained in:
xintaofei
2026-03-09 23:51:21 +08:00
parent 8ea878dbb6
commit bdce24275e
2 changed files with 2 additions and 1 deletions

1
src-tauri/Cargo.lock generated
View File

@@ -2717,6 +2717,7 @@ checksum = "f3879339076ac4da142cc852d91693462927cbc99773b5ea422e4834e68c4ff2"
dependencies = [ dependencies = [
"bindgen", "bindgen",
"nix 0.27.1", "nix 0.27.1",
"tokio",
"tracing", "tracing",
"windows 0.52.0", "windows 0.52.0",
] ]

View File

@@ -56,7 +56,7 @@ tauri-plugin-process = "2"
[target.'cfg(target_os = "windows")'.dependencies] [target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] } windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] }
kill_tree = "0.2" kill_tree = { version = "0.2", features = ["tokio"] }
[patch.crates-io] [patch.crates-io]
sacp-tokio = { path = "vendor/sacp-tokio" } sacp-tokio = { path = "vendor/sacp-tokio" }