Skip to content

Commit 577a96a

Browse files
committed
Bump windows-sys
1 parent 6c1b1a1 commit 577a96a

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/tools/rust-analyzer/Cargo.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ dependencies = [
14341434
"libc",
14351435
"perf-event",
14361436
"tikv-jemalloc-ctl",
1437-
"windows-sys 0.52.0",
1437+
"windows-sys 0.59.0",
14381438
]
14391439

14401440
[[package]]
@@ -1719,7 +1719,7 @@ dependencies = [
17191719
"vfs",
17201720
"vfs-notify",
17211721
"walkdir",
1722-
"windows-sys 0.52.0",
1722+
"windows-sys 0.59.0",
17231723
"xflags",
17241724
"xshell",
17251725
]
@@ -1942,7 +1942,7 @@ dependencies = [
19421942
"jod-thread",
19431943
"libc",
19441944
"miow",
1945-
"windows-sys 0.52.0",
1945+
"windows-sys 0.59.0",
19461946
]
19471947

19481948
[[package]]

src/tools/rust-analyzer/crates/profile/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jemalloc-ctl = { version = "0.5.0", package = "tikv-jemalloc-ctl", optional = tr
2121
perf-event = "=0.4.7"
2222

2323
[target.'cfg(windows)'.dependencies]
24-
windows-sys = { version = "0.52", features = [
25-
"Win32_Foundation",
24+
windows-sys = { version = "0.59", features = [
2625
"Win32_System_Threading",
2726
"Win32_System_ProcessStatus",
2827
] }

src/tools/rust-analyzer/crates/rust-analyzer/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ vfs.workspace = true
7676
paths.workspace = true
7777

7878
[target.'cfg(windows)'.dependencies]
79-
windows-sys = { version = "0.52", features = ["Win32_System_Diagnostics_Debug", "Win32_System_Threading"] }
79+
windows-sys = { version = "0.59", features = [
80+
"Win32_System_Diagnostics_Debug",
81+
"Win32_System_Threading",
82+
] }
8083

8184
[target.'cfg(not(target_env = "msvc"))'.dependencies]
8285
jemallocator = { version = "0.5.0", package = "tikv-jemallocator", optional = true }

src/tools/rust-analyzer/crates/stdx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ itertools.workspace = true
2323

2424
[target.'cfg(windows)'.dependencies]
2525
miow = "0.6.0"
26-
windows-sys = { version = "0.52", features = ["Win32_Foundation"] }
26+
windows-sys = { version = "0.59", features = ["Win32_Foundation"] }
2727

2828
[features]
2929
# Uncomment to enable for the whole crate graph

0 commit comments

Comments
 (0)