From a64a607fd89a4454203dc4ecf32de114e7b6e36b Mon Sep 17 00:00:00 2001 From: Niklas Mohrin Date: Sat, 9 Oct 2021 16:20:03 +0200 Subject: [PATCH] Bump MSRV to 1.53 --- .github/workflows/CICD.yml | 2 +- README.md | 2 +- build.rs | 2 +- clippy.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 3e448c4..03d59a2 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1,7 +1,7 @@ name: CICD env: - MIN_SUPPORTED_RUST_VERSION: "1.42.0" + MIN_SUPPORTED_RUST_VERSION: "1.53.0" CICD_INTERMEDIATES_DIR: "_cicd-intermediates" on: diff --git a/README.md b/README.md index 2fa4eab..e7b56d3 100644 --- a/README.md +++ b/README.md @@ -639,7 +639,7 @@ With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can ``` cargo install fd-find ``` -Note that rust version *1.42.0* or later is required. +Note that rust version *1.53.0* or later is required. `make` is also needed for the build. diff --git a/build.rs b/build.rs index ddf9e15..d2d9566 100644 --- a/build.rs +++ b/build.rs @@ -5,7 +5,7 @@ use clap::Shell; include!("src/app.rs"); fn main() { - let min_version = "1.42"; + let min_version = "1.53"; match version_check::is_min_version(min_version) { Some(true) => {} diff --git a/clippy.toml b/clippy.toml index f97e544..e51b4f3 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.42.0" +msrv = "1.53.0"