Bump windows-sys

This commit is contained in:
Laurențiu Nicola 2025-01-17 21:22:18 +02:00
parent f61bfa4d7f
commit d01fb4d45a
4 changed files with 9 additions and 7 deletions

6
Cargo.lock generated
View file

@ -1434,7 +1434,7 @@ dependencies = [
"libc", "libc",
"perf-event", "perf-event",
"tikv-jemalloc-ctl", "tikv-jemalloc-ctl",
"windows-sys 0.52.0", "windows-sys 0.59.0",
] ]
[[package]] [[package]]
@ -1719,7 +1719,7 @@ dependencies = [
"vfs", "vfs",
"vfs-notify", "vfs-notify",
"walkdir", "walkdir",
"windows-sys 0.52.0", "windows-sys 0.59.0",
"xflags", "xflags",
"xshell", "xshell",
] ]
@ -1942,7 +1942,7 @@ dependencies = [
"jod-thread", "jod-thread",
"libc", "libc",
"miow", "miow",
"windows-sys 0.52.0", "windows-sys 0.59.0",
] ]
[[package]] [[package]]

View file

@ -21,8 +21,7 @@ jemalloc-ctl = { version = "0.5.0", package = "tikv-jemalloc-ctl", optional = tr
perf-event = "=0.4.7" perf-event = "=0.4.7"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.52", features = [ windows-sys = { version = "0.59", features = [
"Win32_Foundation",
"Win32_System_Threading", "Win32_System_Threading",
"Win32_System_ProcessStatus", "Win32_System_ProcessStatus",
] } ] }

View file

@ -76,7 +76,10 @@ vfs.workspace = true
paths.workspace = true paths.workspace = true
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.52", features = ["Win32_System_Diagnostics_Debug", "Win32_System_Threading"] } windows-sys = { version = "0.59", features = [
"Win32_System_Diagnostics_Debug",
"Win32_System_Threading",
] }
[target.'cfg(not(target_env = "msvc"))'.dependencies] [target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version = "0.5.0", package = "tikv-jemallocator", optional = true } jemallocator = { version = "0.5.0", package = "tikv-jemallocator", optional = true }

View file

@ -23,7 +23,7 @@ itertools.workspace = true
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
miow = "0.6.0" miow = "0.6.0"
windows-sys = { version = "0.52", features = ["Win32_Foundation"] } windows-sys = { version = "0.59", features = ["Win32_Foundation"] }
[features] [features]
# Uncomment to enable for the whole crate graph # Uncomment to enable for the whole crate graph