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

View file

@ -46,3 +46,6 @@ libc = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies] [target.'cfg(target_os = "macos")'.dependencies]
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] } 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] [target."cfg(unix)".dependencies]
libc = { workspace = true } libc = { workspace = true }
uzers = { workspace = true } uzers = { workspace = true }
[target."cfg(windows)".dependencies]
windows-sys = { version = "0.61.2", features = [ "Win32_System_JobObjects" ] }