From d59150299cfec693d6c597ca1fbfc99b155fb09c Mon Sep 17 00:00:00 2001 From: Floogle <18466542+skyfloogle@users.noreply.github.com> Date: Sun, 14 Apr 2024 13:33:46 +0200 Subject: [PATCH] Update `windows-sys` to `0.52` --- notify/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 8730d7fd..f1ea48c9 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -37,7 +37,7 @@ kqueue = { version = "1.0", optional = true } mio = { version = "0.8", features = ["os-ext"], optional = true } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.48.0", features = ["Win32_System_Threading", "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_WindowsProgramming", "Win32_System_IO"] } +windows-sys = { version = "0.52.0", features = ["Win32_System_Threading", "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_WindowsProgramming", "Win32_System_IO"] } [target.'cfg(any(target_os="freebsd", target_os="openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios"))'.dependencies] kqueue = "^1.0.4" # fix for #344