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 committed Nov 13, 2022
1 parent 8118cc8 commit e25a120
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 <[email protected]>"
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 e25a120

Please sign in to comment.