From c9059481ce715c2f1cac9fb71c4562d0d2097fe5 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Mon, 18 Nov 2024 14:34:45 +0100 Subject: [PATCH] Update msrv --- .github/workflows/ci.yml | 6 +++--- README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37a0e50..e20ff35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: [1.60.0, stable] + rust: [1.63.0, stable] include: - - rust: 1.60.0 + - rust: 1.63.0 test_no_std: false - - rust: 1.60.0 + - rust: 1.63.0 test_no_std: true - rust: stable test_no_std: true diff --git a/README.md b/README.md index 95c8829..1890fec 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,10 @@ Add the following to Cargo.toml: ```toml -bcrypt = "0.15" +bcrypt = "0.16" ``` -The minimum Rust version is 1.60.0. +The minimum Rust version is 1.63.0. ## Usage The crate makes 3 things public: `DEFAULT_COST`, `hash`, `verify`.