From 5764dd4b41d4013471d0e05c80092c1a2dc7f400 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 18 Apr 2024 10:30:38 -0400 Subject: [PATCH] proj: MSRV 1.61 -> 1.63 We're seeing more of our deps move to this MSRV or higher and it's shipped in Debian stable. Time to move our MSRV to 1.63. --- .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 466747b2..fd5300a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -240,7 +240,7 @@ jobs: - name: Install toolchain uses: dtolnay/rust-toolchain@master with: - toolchain: "1.61" + toolchain: "1.63" - run: cargo check --locked --lib --all-features cross: diff --git a/Cargo.toml b/Cargo.toml index 51618e6c..ad0e50a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] description = "Web PKI X.509 Certificate Verification." edition = "2021" -rust-version = "1.61" +rust-version = "1.63" license = "ISC" name = "rustls-webpki" readme = "README.md"