Update msrv to 1.60

Because that is what clap requires
This commit is contained in:
Thayne McCombs 2022-10-11 00:39:57 -06:00
parent bf1a6f6680
commit c0b14705cd
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
name: CICD name: CICD
env: env:
MIN_SUPPORTED_RUST_VERSION: "1.57.0" MIN_SUPPORTED_RUST_VERSION: "1.60.0"
CICD_INTERMEDIATES_DIR: "_cicd-intermediates" CICD_INTERMEDIATES_DIR: "_cicd-intermediates"
on: on:

View File

@ -1,5 +1,5 @@
fn main() { fn main() {
let min_version = "1.57"; let min_version = "1.60";
match version_check::is_min_version(min_version) { match version_check::is_min_version(min_version) {
Some(true) => {} Some(true) => {}

View File

@ -1 +1 @@
msrv = "1.57.0" msrv = "1.60.0"