Skip to content

Commit bc41a0b

Browse files
build(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0.62 (#374)
* build(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0.62 Updates the requirements on [windows-sys](https://github.com/microsoft/windows-rs) to permit the latest version. - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](microsoft/windows-rs@0.52.0...0.61.0) --- updated-dependencies: - dependency-name: windows-sys dependency-version: 0.61.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * ci: downgrade windows-sys on rust 1.63 for MSRV --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steven Allen <[email protected]>
1 parent 3c55387 commit bc41a0b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ jobs:
8484
- name: Downgrading once_cell
8585
if: matrix.rust-version == 1.63
8686
run: cargo update -p once_cell --precise 1.20.3
87+
- name: Downgrading windows-sys
88+
if: matrix.rust-version == 1.63
89+
run: cargo update -p windows-sys --precise 0.60.2
8790
- name: Install Wasmtime
8891
if: ${{ startsWith(matrix.platform.target, 'wasm32-wasi') }}
8992
run: curl https://wasmtime.dev/install.sh -sSf | bash

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ getrandom = { version = "0.3.0", default-features = false, optional = true }
2828
rustix = { version = "1.0.0", features = ["fs"] }
2929

3030
[target.'cfg(windows)'.dependencies.windows-sys]
31-
version = ">=0.52, <0.61"
31+
version = ">=0.52, <0.62"
3232
features = [
3333
"Win32_Storage_FileSystem",
3434
"Win32_Foundation",

0 commit comments

Comments
 (0)