From 0c61f7e2aae3fea0aa51c1304f86e5775a2c2b0f Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 6 Feb 2025 12:26:59 -0500 Subject: [PATCH] Cargo: MSRV 1.70 -> 1.71 The upstream Rustls library updated its MSRV to 1.71 for 0.23.20+ --- .github/workflows/CI.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 974d753c..82f78b74 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -95,6 +95,6 @@ jobs: - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.70" + toolchain: "1.71" - run: cargo check --locked --lib --all-features diff --git a/Cargo.toml b/Cargo.toml index e1f71ea4..19a1590b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ readme = "README.md" description = "Asynchronous TLS/SSL streams for Tokio using Rustls." categories = ["asynchronous", "cryptography", "network-programming"] edition = "2021" -rust-version = "1.70" +rust-version = "1.71" exclude = ["/.github", "/examples", "/scripts"] [dependencies]