summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2022-01-05 02:19:17 -0700
committerThayne McCombs <astrothayne@gmail.com>2022-01-07 23:56:03 -0700
commit2e9be3e3f51a2191863d53c164c96e71864fdadd (patch)
treebfd938386d4525d537e677ac35c4789585d58aaf
parent43f276e0731b52ee9d07593dcdd6d702a10499ea (diff)
Bump MSRV to 1.54
Because that is needed by clap 3.0
-rw-r--r--.github/workflows/CICD.yml2
-rw-r--r--README.md2
-rw-r--r--build.rs2
-rw-r--r--clippy.toml2
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index b84459f..43f9078 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -1,7 +1,7 @@
name: CICD
env:
- MIN_SUPPORTED_RUST_VERSION: "1.53.0"
+ MIN_SUPPORTED_RUST_VERSION: "1.54.0"
CICD_INTERMEDIATES_DIR: "_cicd-intermediates"
on:
diff --git a/README.md b/README.md
index d844163..fda727e 100644
--- a/README.md
+++ b/README.md
@@ -652,7 +652,7 @@ With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can
```
cargo install fd-find
```
-Note that rust version *1.53.0* or later is required.
+Note that rust version *1.54.0* or later is required.
`make` is also needed for the build.
diff --git a/build.rs b/build.rs
index cb390f7..4a24cd8 100644
--- a/build.rs
+++ b/build.rs
@@ -7,7 +7,7 @@ use Shell::*;
include!("src/app.rs");
fn main() {
- let min_version = "1.53";
+ let min_version = "1.54";
match version_check::is_min_version(min_version) {
Some(true) => {}
diff --git a/clippy.toml b/clippy.toml
index e51b4f3..0f31b88 100644
--- a/clippy.toml
+++ b/clippy.toml
@@ -1 +1 @@
-msrv = "1.53.0"
+msrv = "1.54.0"