From bd4f31bc4833a11e75913f0146d541e056221d1e Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 24 Jan 2024 11:01:59 +0100 Subject: [PATCH] Bump MSRV to 1.64 for rustls-platform-verifier --- .github/workflows/build.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f94b76..5f93999 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,7 +83,7 @@ jobs: - name: Install rust toolchain uses: dtolnay/rust-toolchain@master with: - toolchain: "1.63" + toolchain: "1.64" - name: Check MSRV run: cargo check --lib --all-features diff --git a/Cargo.toml b/Cargo.toml index c908326..0f69ae4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "hyper-rustls" version = "0.26.0" edition = "2021" -rust-version = "1.63" +rust-version = "1.64" license = "Apache-2.0 OR ISC OR MIT" readme = "README.md" description = "Rustls+hyper integration for pure rust HTTPS"