chore: Update MSRV to 1.64.0

To match clap 4.1
This commit is contained in:
Thayne McCombs 2023-01-18 23:00:03 -07:00
parent 10ba34f78b
commit c34bfa30fe
4 changed files with 4 additions and 3 deletions

View File

@ -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:

View File

@ -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"

View File

@ -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) => {}

View File

@ -1 +1 @@
msrv = "1.60.0"
msrv = "1.64.0"