From c0b14705cd4247dfd8ebdd4dba137a8cc8ae2cc2 Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Tue, 11 Oct 2022 00:39:57 -0600 Subject: [PATCH] Update msrv to 1.60 Because that is what clap requires --- .github/workflows/CICD.yml | 2 +- build.rs | 2 +- clippy.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 89f652b..5d5c363 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1,7 +1,7 @@ name: CICD env: - MIN_SUPPORTED_RUST_VERSION: "1.57.0" + MIN_SUPPORTED_RUST_VERSION: "1.60.0" CICD_INTERMEDIATES_DIR: "_cicd-intermediates" on: diff --git a/build.rs b/build.rs index ab1219b..224f2d3 100644 --- a/build.rs +++ b/build.rs @@ -1,5 +1,5 @@ fn main() { - let min_version = "1.57"; + let min_version = "1.60"; match version_check::is_min_version(min_version) { Some(true) => {} diff --git a/clippy.toml b/clippy.toml index 23b32c1..16caf02 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.57.0" +msrv = "1.60.0"