From 84d71bfa397f2a217ca06c0651984ce1fb3b2507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E9=9B=85=20=C2=B7=20Misaki=20Masa?= Date: Fri, 28 Feb 2025 19:03:40 +0800 Subject: [PATCH] fix: `windows-sys` features for `Win32_Storage_FileSystem` and `Win32_System_Threading` (#2417) --- 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" ] }