Bump MSRV to 1.85 and update to Rust 2024 edition (#1151)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Alex Gaynor 2026-02-05 09:27:38 -05:00 committed by GitHub
parent 2f3b97e272
commit 2b15932666
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View File

@ -99,7 +99,7 @@ jobs:
- {VERSION: "pypy-3.11", NOXSESSION: "tests"} - {VERSION: "pypy-3.11", NOXSESSION: "tests"}
# MSRV # MSRV
- {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "1.74.0"} - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "1.85"}
- {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "beta"} - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "beta"}
- {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "nightly"} - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "nightly"}
name: "${{ matrix.PYTHON.VERSION }} on linux, Rust ${{ matrix.PYTHON.RUST_VERSION || 'stable' }}" name: "${{ matrix.PYTHON.VERSION }} on linux, Rust ${{ matrix.PYTHON.RUST_VERSION || 'stable' }}"

View File

@ -1,6 +1,11 @@
Changelog Changelog
========= =========
Unreleased
----------
* Bumped MSRV to 1.85.
5.0.0 5.0.0
----- -----

View File

@ -2,9 +2,9 @@
name = "bcrypt-rust" name = "bcrypt-rust"
version = "0.1.0" version = "0.1.0"
authors = ["The bcrypt developers <cryptography-dev@python.org>"] authors = ["The bcrypt developers <cryptography-dev@python.org>"]
edition = "2018" edition = "2024"
# This specifies the MSRV # This specifies the MSRV
rust-version = "1.74.0" rust-version = "1.85"
publish = false publish = false
[dependencies] [dependencies]