mirror of
https://github.com/lsd-rs/lsd
synced 2025-03-04 23:17:15 +00:00
bump min rustc version to 1.64
This commit is contained in:
parent
c3596c35ad
commit
907214cb39
2 changed files with 3 additions and 3 deletions
2
.github/workflows/CICD.yml
vendored
2
.github/workflows/CICD.yml
vendored
|
@ -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]
|
||||
|
||||
|
|
4
build.rs
4
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue