From c416bf8f9d6d922b0399d5685b385b6a0d287fa7 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Sun, 11 Jan 2026 22:05:56 +0100 Subject: [PATCH] Bump MSRV --- .github/workflows/ci.yml | 8 ++++---- README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea22ba..de8174f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: [1.63.0, stable] + rust: [1.85.0, stable] include: - - rust: 1.63.0 + - rust: 1.85.0 test_no_std: false - - rust: 1.63.0 + - rust: 1.85.0 test_no_std: true - rust: stable test_no_std: true @@ -79,7 +79,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: - toolchain: 1.63.0 + toolchain: 1.85.0 components: clippy - run: cargo clippy -- -D warnings diff --git a/README.md b/README.md index 9f9557a..0782edf 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,10 @@ Add the following to Cargo.toml: ```toml -bcrypt = "0.17" +bcrypt = "0.18" ``` -The minimum Rust version is 1.63.0. +The minimum Rust version is 1.85.0. ## Usage The crate makes 3 things public: `DEFAULT_COST`, `hash`, `verify`.