Skip to content

Update windows-sys requirement from 0.52.0 to 0.59.0 #359

Update windows-sys requirement from 0.52.0 to 0.59.0

Update windows-sys requirement from 0.52.0 to 0.59.0 #359

Workflow file for this run

name: msrv
on: [push, pull_request]
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
MSRV: 1.63
jobs:
test:
name: msrv
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain add $MSRV nightly --no-self-update
rustup default $MSRV
- name: Use minimal version and create Cargo.lock
run: |
./avoid-dev-deps.sh
cargo +nightly -Zminimal-versions update
- uses: Swatinem/rust-cache@v2
- run: cargo check --all-features
msrv-wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain add $MSRV --no-self-update --target wasm32-wasi
rustup toolchain add nightly --no-self-update
rustup default $MSRV
- name: Use minimal version and create Cargo.lock
run: |
./avoid-dev-deps.sh
cargo +nightly -Zminimal-versions update
- uses: Swatinem/rust-cache@v2
- run: cargo check --target wasm32-wasi