From 3ae767327436c59fead00e99126c237a071a6c3e Mon Sep 17 00:00:00 2001 From: Kreijstal Date: Wed, 7 May 2025 03:57:35 +0200 Subject: [PATCH] fix: `windows-sys` missing a `Win32_Security` feature (#2728) Co-authored-by: sxyazi --- yazi-term/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-term/Cargo.toml b/yazi-term/Cargo.toml index 69c080ec..b3efd7cb 100644 --- a/yazi-term/Cargo.toml +++ b/yazi-term/Cargo.toml @@ -27,4 +27,4 @@ libc = { workspace = true } crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.59.0", features = [ "Win32_Globalization", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_Console", "Win32_System_Threading" ] } +windows-sys = { version = "0.59.0", features = [ "Win32_Globalization", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_Console", "Win32_System_Threading", "Win32_Security" ] }