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); }