summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIcxolu <10486322+Icxolu@users.noreply.github.com>2022-11-13 16:25:22 +0100
committerAbin Simon <abinsimon10@gmail.com>2022-11-13 22:10:58 +0530
commit907214cb3930a7c4f5f2f93561e2a6b3adb81c23 (patch)
treeb4fe3655a2552b0128ee557c03355cd58c8c743c
parentc3596c35ad26037009878c84c018f66b0ca4ee31 (diff)
bump min rustc version to 1.64
-rw-r--r--.github/workflows/CICD.yml2
-rw-r--r--build.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 990a35f..7bc7ba5 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 <peltoche@halium.fr>"
- 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 918f457..6c64b7f 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);
}