diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index a0803ab..718fc19 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1,7 +1,7 @@ name: CICD env: - MIN_SUPPORTED_RUST_VERSION: "1.56.0" + MIN_SUPPORTED_RUST_VERSION: "1.57.0" CICD_INTERMEDIATES_DIR: "_cicd-intermediates" on: diff --git a/README.md b/README.md index 7af5da6..9ca1a73 100644 --- a/README.md +++ b/README.md @@ -676,7 +676,7 @@ With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can ``` cargo install fd-find ``` -Note that rust version *1.56.0* or later is required. +Note that rust version *1.57.0* or later is required. `make` is also needed for the build. diff --git a/build.rs b/build.rs index d78641a..771f932 100644 --- a/build.rs +++ b/build.rs @@ -7,7 +7,7 @@ use Shell::*; include!("src/app.rs"); fn main() { - let min_version = "1.56"; + let min_version = "1.57"; match version_check::is_min_version(min_version) { Some(true) => {} diff --git a/clippy.toml b/clippy.toml index 0d369b5..23b32c1 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.56.0" +msrv = "1.57.0"