Skip to content

Commit

Permalink
Bump MSRV to 1.62.0
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Nov 24, 2022
1 parent f2ec019 commit 9830146
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 111 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all

Expand All @@ -28,8 +28,8 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: messense/crfsuite-rs
path: tests/crfsuite-rs
Expand Down Expand Up @@ -94,11 +94,19 @@ jobs:
# Test CMake support
cargo run --release xwin build --target aarch64-pc-windows-msvc --manifest-path tests/crfsuite-rs/Cargo.toml
msrv:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
- run: cargo check

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
Expand All @@ -108,7 +116,7 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand All @@ -119,5 +127,5 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@master
140 changes: 37 additions & 103 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
keywords = ["windows", "cargo", "msvc"]
readme = "README.md"
repository = "https://github.com/messense/cargo-xwin"
rust-version = "1.61"
rust-version = "1.62"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -20,7 +20,7 @@ fs-err = "2.7.0"
indicatif = "0.17.2"
path-slash = "0.2.0"
which = "4.2.4"
xwin = { version = "=0.2.8", default-features = false }
xwin = { version = "0.2.9", default-features = false }

[features]
# By default we use rustls for TLS
Expand Down

0 comments on commit 9830146

Please sign in to comment.