Skip to content

Commit

Permalink
Use MSRV of 1.66.1
Browse files Browse the repository at this point in the history
- Since no more nightly features are used, then set a MSRV
- Update GitHub Actions
  • Loading branch information
bluk committed Sep 18, 2023
1 parent 113921f commit 3b9c23f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: rustc --version
- run: cargo install cargo-audit
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- run: cargo generate-lockfile
Expand Down
19 changes: 11 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
- macos-latest
- windows-latest
rust:
- nightly
- stable
- 1.66.1
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install toolchain
Expand All @@ -46,11 +47,12 @@ jobs:
- macos-latest
- windows-latest
rust:
- nightly
- stable
- 1.66.1
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install toolchain
Expand All @@ -76,11 +78,11 @@ jobs:
os:
- ubuntu-latest
rust:
- nightly
- stable
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install toolchain
Expand All @@ -98,11 +100,12 @@ jobs:
os:
- ubuntu-latest
rust:
- stable
- nightly
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install toolchain
Expand All @@ -111,4 +114,4 @@ jobs:
toolchain: ${{ matrix.rust }}
components: clippy
- name: Run cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
run: cargo clippy --all-targets --all-features
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ license = "MIT OR Apache-2.0"
name = "passdata"
repository = "https://github.com/bluk/passdata"
readme = "README.md"
rust-version = "1.66.1"
version = "0.0.2"

[dependencies]
Expand Down

0 comments on commit 3b9c23f

Please sign in to comment.