Skip to content

Commit

Permalink
bump min rustc version to 1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
Icxolu authored and meain committed Nov 13, 2022
1 parent c3596c3 commit 907214c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 907214c

Please sign in to comment.