From 1b5656da23bffe3742b30b3f8e43dbb6bea3b733 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sun, 3 Sep 2023 14:43:06 -0700 Subject: [PATCH] CI: Increase MSRV to 1.60. --- .github/workflows/ci.yml | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba4f4be520..89c9773de9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,7 +194,8 @@ jobs: rust_channel: - stable - nightly - - 1.57 # MSRV + # Some benchmarking dependencies require 1.60. + - 1.60.0 # MSRV - beta include: diff --git a/Cargo.toml b/Cargo.toml index 775810fbee..925c990ebf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ readme = "doc/link-to-readme.md" repository = "https://github.com/briansmith/ring" # Keep in sync with .github/workflows/ci.yml ("MSRV"). -rust-version = "1.57" +rust-version = "1.60.0" # Keep in sync with `links` below. version = "0.17.0-not-released-yet"