summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarawit Rakket <narawitrakket@hotmail.com>2022-08-12 17:20:17 +0700
committerAbin Simon <abinsimon10@gmail.com>2022-08-12 18:06:57 +0530
commit31d3701cae4b00705f8777e0a96627fe76ab2b08 (patch)
tree5f2ad304aabc3ba7591ebc4721ef0e6e6d712e23
parent8c1089ed578d3c0c82bc760b5c4435fe4ab00af0 (diff)
chore: reduce MSRV to 1.62.0
-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 6367f20..990a35f 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.1"
+ RUST_MIN_SRV: "1.62.0"
on: [push, pull_request]
diff --git a/build.rs b/build.rs
index a271ff0..5b7309e 100644
--- a/build.rs
+++ b/build.rs
@@ -18,11 +18,11 @@ use std::process::exit;
include!("src/app.rs");
fn main() {
- match version_check::is_min_version("1.62.1") {
+ match version_check::is_min_version("1.62.0") {
Some(true) => {}
// rustc version too small or can't figure it out
_ => {
- writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.62.1").unwrap();
+ writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.62.0").unwrap();
exit(1);
}
}