From d848663eaa43b7be6d5bd6878c5cc6316e9af10f Mon Sep 17 00:00:00 2001 From: Wei Zhang Date: Wed, 1 Nov 2023 11:21:12 +0800 Subject: [PATCH] :arrow_up: bump msrv to 1.69 Signed-off-by: Wei Zhang --- .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 bb0605293..ccdefc27e 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.64.0" + RUST_MIN_SRV: "1.69.0" on: [push, pull_request] diff --git a/build.rs b/build.rs index 68540c9b5..ac4da2e00 100644 --- a/build.rs +++ b/build.rs @@ -16,8 +16,8 @@ include!("src/app.rs"); fn main() { // rustc version too small or can't figure it out - if version_check::is_min_version("1.64.0") != Some(true) { - eprintln!("'lsd' requires rustc >= 1.64.0"); + if version_check::is_min_version("1.69.0") != Some(true) { + eprintln!("'lsd' requires rustc >= 1.69.0"); exit(1); }