From 0b39465278cf41de6e020a14300c43a7c0fbf1b4 Mon Sep 17 00:00:00 2001 From: Kreijstal Date: Tue, 6 May 2025 13:41:44 +0200 Subject: [PATCH] fix: remove unneeded win32 dependency Foundation is not needed, I simply added because I was eager to see if it solved the problem faster... oh well --- 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 7fb7fb63..64600165 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","Win32_Foundation", "Win32_Security"] } +windows-sys = { version = "0.59.0", features = [ "Win32_Globalization", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_Console", "Win32_System_Threading", "Win32_Security"] }