bump min rustc version to 1.64

This commit is contained in:
Icxolu 2022-11-13 16:25:22 +01:00 committed by Abin Simon
parent c3596c35ad
commit 907214cb39
2 changed files with 3 additions and 3 deletions

View file

@ -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]

View file

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