This commit is contained in:
sxyazi 2026-03-31 21:58:54 +08:00
parent 20227bdb13
commit 3652915f90
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -5640,6 +5640,7 @@ dependencies = [
"tokio-stream",
"tracing",
"unicode-width",
"windows-sys 0.61.2",
"yazi-adapter",
"yazi-codegen",
"yazi-config",
@ -5950,7 +5951,6 @@ dependencies = [
"twox-hash",
"unicode-width",
"uzers",
"windows-sys 0.61.2",
"yazi-adapter",
"yazi-binding",
"yazi-boot",

View file

@ -46,3 +46,6 @@ libc = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
[target."cfg(windows)".dependencies]
windows-sys = { version = "0.61.2", features = [ "Win32_System_JobObjects" ] }

View file

@ -52,6 +52,3 @@ unicode-width = { workspace = true }
[target."cfg(unix)".dependencies]
libc = { workspace = true }
uzers = { workspace = true }
[target."cfg(windows)".dependencies]
windows-sys = { version = "0.61.2", features = [ "Win32_System_JobObjects" ] }