From 652cacf1478bb836d5655bc8f3ec1066b47fbf94 Mon Sep 17 00:00:00 2001 From: Sean Olson Date: Wed, 20 Sep 2023 13:26:34 -0700 Subject: [PATCH] Bump MSRV to `1.60.0`. This change bumps the MSRV to support dependencies. Arguably, some dependencies have violated SemVer by publishing or upgrading their MSRV without a breaking release, and so this change comes without any changes to dependency specifications. --- .github/workflows/continuous-integration.yml | 2 +- pictor/Cargo.toml | 2 +- plexus/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 220521c..08990ed 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -40,7 +40,7 @@ jobs: matrix: os: [macOS-latest, ubuntu-latest, windows-latest] toolchain: - - 1.56.0 # Minimum. + - 1.60.0 # Minimum. - stable - beta - nightly diff --git a/pictor/Cargo.toml b/pictor/Cargo.toml index 77eb678..1a9a9bb 100644 --- a/pictor/Cargo.toml +++ b/pictor/Cargo.toml @@ -2,7 +2,7 @@ name = "pictor" version = "0.0.0" edition = "2021" -rust-version = "1.56.0" +rust-version = "1.60.0" authors = ["Sean Olson "] license = "MIT" description = "Support library for Plexus examples." diff --git a/plexus/Cargo.toml b/plexus/Cargo.toml index 7c5f4a4..a2187ce 100644 --- a/plexus/Cargo.toml +++ b/plexus/Cargo.toml @@ -2,7 +2,7 @@ name = "plexus" version = "0.0.11" edition = "2021" -rust-version = "1.56.0" +rust-version = "1.60.0" authors = ["Sean Olson "] license = "MIT" readme = "../README.md"