diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index bdb72b8..5947061 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1,7 +1,7 @@ name: CICD env: - MIN_SUPPORTED_RUST_VERSION: "1.60.0" + MIN_SUPPORTED_RUST_VERSION: "1.64.0" CICD_INTERMEDIATES_DIR: "_cicd-intermediates" on: diff --git a/Cargo.toml b/Cargo.toml index 9a4e39c..d3db39c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,7 @@ readme = "README.md" repository = "https://github.com/sharkdp/fd" version = "8.6.0" edition= "2021" +rust-version = "1.64.0" [badges.appveyor] repository = "sharkdp/fd" diff --git a/build.rs b/build.rs index 224f2d3..5a4c372 100644 --- a/build.rs +++ b/build.rs @@ -1,5 +1,5 @@ fn main() { - let min_version = "1.60"; + let min_version = "1.64"; match version_check::is_min_version(min_version) { Some(true) => {} diff --git a/clippy.toml b/clippy.toml index 16caf02..22fd4be 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.60.0" +msrv = "1.64.0"