Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | Cargo.lock | 6 | ||||
| -rw-r--r-- | crates/profile/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/rust-analyzer/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/stdx/Cargo.toml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index e6575c28c1..768c3a9aa6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1924,7 +1924,7 @@ dependencies = [ "libc", "perf-event", "tikv-jemalloc-ctl", - "windows-sys 0.60.2", + "windows-sys 0.61.0", ] [[package]] @@ -2355,7 +2355,7 @@ dependencies = [ "vfs", "vfs-notify", "walkdir", - "windows-sys 0.60.2", + "windows-sys 0.61.0", "xflags", "xshell", ] @@ -2694,7 +2694,7 @@ dependencies = [ "libc", "miow", "tracing", - "windows-sys 0.60.2", + "windows-sys 0.61.0", ] [[package]] diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml index 8377e94c8d..048d3776ca 100644 --- a/crates/profile/Cargo.toml +++ b/crates/profile/Cargo.toml @@ -23,7 +23,7 @@ perf-event = "=0.4.8" libc.workspace = true [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60", features = [ +windows-sys = { version = "0.61", features = [ "Win32_System_Threading", "Win32_System_ProcessStatus", ] } diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index da2ec74019..27d9576e29 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml @@ -78,7 +78,7 @@ paths.workspace = true ra-ap-rustc_type_ir.workspace = true [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60", features = [ +windows-sys = { version = "0.61", features = [ "Win32_System_Diagnostics_Debug", "Win32_System_Threading", ] } diff --git a/crates/stdx/Cargo.toml b/crates/stdx/Cargo.toml index 2c19f00f08..a9d19a1347 100644 --- a/crates/stdx/Cargo.toml +++ b/crates/stdx/Cargo.toml @@ -26,7 +26,7 @@ libc.workspace = true [target.'cfg(windows)'.dependencies] miow = "0.6.0" -windows-sys = { version = "0.60", features = ["Win32_Foundation"] } +windows-sys = { version = "0.61", features = ["Win32_Foundation"] } [features] # Uncomment to enable for the whole crate graph |