Skip to content

Commit bc1cdf7

Browse files
Bump windows from 0.59.0 to 0.60.0 in the windows group (#235)
* Bump windows from 0.59.0 to 0.60.0 in the windows group Bumps the windows group with 1 update: [windows](https://github.com/microsoft/windows-rs). Updates `windows` from 0.59.0 to 0.60.0 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](microsoft/windows-rs@0.59.0...0.60.0) --- updated-dependencies: - dependency-name: windows dependency-type: direct:production update-type: version-update:semver-minor dependency-group: windows ... Signed-off-by: dependabot[bot] <[email protected]> * fix BOOL import --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maximilian Hils <[email protected]>
1 parent 79a03b8 commit bc1cdf7

File tree

3 files changed

+57
-83
lines changed

3 files changed

+57
-83
lines changed

Cargo.lock

Lines changed: 54 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ socket2 = "0.5.8"
7474
boringtun = { git = 'https://github.com/cloudflare/boringtun', rev = 'e3252d9c4f4c8fc628995330f45369effd4660a1' }
7575

7676
[target.'cfg(windows)'.dependencies.windows]
77-
version = "0.59.0"
77+
version = "0.60.0"
7878
features = [
7979
"Win32_Foundation",
8080
"Win32_Graphics_Dwm",

src/processes/windows_list.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use std::sync::Mutex;
1010
use anyhow::{anyhow, Result};
1111
use once_cell::sync::Lazy;
1212
use windows::core::w;
13-
use windows::core::{PCWSTR, PWSTR};
14-
use windows::Win32::Foundation::{CloseHandle, BOOL, HANDLE, HWND, LPARAM, MAX_PATH};
13+
use windows::core::{BOOL, PCWSTR, PWSTR};
14+
use windows::Win32::Foundation::{CloseHandle, HANDLE, HWND, LPARAM, MAX_PATH};
1515
use windows::Win32::Graphics::Dwm::{DwmGetWindowAttribute, DWMWA_CLOAKED};
1616
use windows::Win32::Storage::FileSystem::{
1717
GetFileVersionInfoSizeW, GetFileVersionInfoW, VerQueryValueW,

0 commit comments

Comments
 (0)