Skip to content

Commit

Permalink
Raise MSRV to 1.64
Browse files Browse the repository at this point in the history
This is a ~6 month increase from the previous 1.60.
  • Loading branch information
complexspaces committed Jun 6, 2024
1 parent 68d502f commit 3e8e7c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:

- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: "1.60.0"
toolchain: "1.64.0"
components: clippy

- uses: actions/cache@v4
Expand All @@ -129,11 +129,11 @@ jobs:
key: $clippy-cache-${{ steps.toolchain.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.lock') }}

- name: Generate lockfile
# XXX: `0.6.1` of `toml_datetime` is the last version with a MSRV that matches
# our current one.
# XXX: Downgrade various dependencies to make them or their sub-dependencies MSRV compatible.
run: |
cargo generate-lockfile
cargo update -p toml_datetime --precise "0.6.1"
cargo update -p proc-macro-crate --precise "1.3.0"
cargo update -p regex --precise "1.9.6"
- name: Clippy MSRV
run: cargo clippy --features=rt-tokio-crypto-rust --all-targets --all -- -D clippy::dbg_macro -D warnings -F unused_must_use
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Unreleased
- Bumped MSRV to 1.64

[3.0.1]
- Fix docs.rs builds
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "secret-service"
repository = "https://github.com/hwchen/secret-service-rs.git"
edition = "2021"
version = "3.0.1"
rust-version = "1.60.0"
rust-version = "1.64.0"

# The async runtime features mirror those of `zbus` for compatibility.
[features]
Expand Down

0 comments on commit 3e8e7c5

Please sign in to comment.