about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@users.noreply.github.com>2025-01-17 18:54:57 +0000
committerGitHub <noreply@github.com>2025-01-17 18:54:57 +0000
commit6c1b1a14142bcdbbb52e158b085a4594c9cec3ec (patch)
tree8ba30608de3da4f84d84f6c3dd0d1b071cd6650b /src/tools
parentff5c32f5424b439e7c510a74feb1d7d4f01ab6ae (diff)
parent3ce55e949e4dcb2e51c93ea211530947a4c86bab (diff)
downloadrust-6c1b1a14142bcdbbb52e158b085a4594c9cec3ec.tar.gz
rust-6c1b1a14142bcdbbb52e158b085a4594c9cec3ec.zip
Merge pull request #18963 from gvozdvmozgu/Win32_Foundation
add missing `Win32_Foundation` feature
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rust-analyzer/crates/profile/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/profile/Cargo.toml b/src/tools/rust-analyzer/crates/profile/Cargo.toml
index 2e3413f339b..5eb746f86a6 100644
--- a/src/tools/rust-analyzer/crates/profile/Cargo.toml
+++ b/src/tools/rust-analyzer/crates/profile/Cargo.toml
@@ -21,7 +21,11 @@ jemalloc-ctl = { version = "0.5.0", package = "tikv-jemalloc-ctl", optional = tr
 perf-event = "=0.4.7"
 
 [target.'cfg(windows)'.dependencies]
-windows-sys = { version = "0.52", features = ["Win32_System_Threading", "Win32_System_ProcessStatus"] }
+windows-sys = { version = "0.52", features = [
+    "Win32_Foundation",
+    "Win32_System_Threading",
+    "Win32_System_ProcessStatus",
+] }
 
 [features]
 cpu_profiler = []