summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2022-10-11 00:39:57 -0600
committerThayne McCombs <astrothayne@gmail.com>2022-10-11 00:39:57 -0600
commitc0b14705cd4247dfd8ebdd4dba137a8cc8ae2cc2 (patch)
tree96932c409bca9f002e9677247e088306cce18f1a
parentbf1a6f66801d5cbca7eb2b7af7e035619208228d (diff)
Update msrv to 1.60
Because that is what clap requires
-rw-r--r--.github/workflows/CICD.yml2
-rw-r--r--build.rs2
-rw-r--r--clippy.toml2
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"