From e25a12016369dce28820f489c286863b51e5594b Mon Sep 17 00:00:00 2001 From: Icxolu <10486322+Icxolu@users.noreply.github.com> Date: Sun, 13 Nov 2022 16:25:22 +0100 Subject: [PATCH] bump min rustc version to 1.64 --- .github/workflows/CICD.yml | 2 +- build.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 990a35f26..7bc7ba530 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -6,7 +6,7 @@ env: PROJECT_NAME: lsd PROJECT_DESC: "An ls command with a lot of pretty colors." PROJECT_AUTH: "Peltoche " - RUST_MIN_SRV: "1.62.0" + RUST_MIN_SRV: "1.64.0" on: [push, pull_request] diff --git a/build.rs b/build.rs index 918f457b6..6c64b7f38 100644 --- a/build.rs +++ b/build.rs @@ -18,8 +18,8 @@ include!("src/app.rs"); fn main() { // rustc version too small or can't figure it out - if version_check::is_min_version("1.62.0") != Some(true) { - eprintln!("'lsd' requires rustc >= 1.62.0"); + if version_check::is_min_version("1.64.0") != Some(true) { + eprintln!("'lsd' requires rustc >= 1.64.0"); exit(1); }