From 0a6308484bfa9923fc2d8d24b61de9b1aa9fa883 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Fri, 28 Feb 2025 19:02:21 +0800 Subject: [PATCH] fix: `windows-sys` features for `Win32_Storage_FileSystem` and `Win32_System_Threading` --- yazi-adapter/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-adapter/Cargo.toml b/yazi-adapter/Cargo.toml index 02c59685..130ce236 100644 --- a/yazi-adapter/Cargo.toml +++ b/yazi-adapter/Cargo.toml @@ -29,7 +29,7 @@ tracing = { workspace = true } libc = { workspace = true } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.59.0", features = [ "Win32_UI_Shell" ] } +windows-sys = { version = "0.59.0", features = [ "Win32_Storage_FileSystem", "Win32_System_Threading" ] } [target.'cfg(target_os = "macos")'.dependencies] crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }