diff options
| author | d1t2 <507502+dieterplex@users.noreply.github.com> | 2023-09-22 11:32:39 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-22 11:32:39 +0800 |
| commit | 6aa47be78e9b80beec3bdd5b96a8f985138358b2 (patch) | |
| tree | a65cd998684e525a1428db1754a0b4820cc00a2c /install.ps1 | |
| parent | 06f865307f0c92080d88d747bccac896e29e1baf (diff) | |
fix(installation): bump MinRustVersion to 1.70
Since #1633 porting to Clap, min Rust version reqirement changes.
Diffstat (limited to 'install.ps1')
| -rw-r--r-- | install.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.ps1 b/install.ps1 index 7bab21f..844b013 100644 --- a/install.ps1 +++ b/install.ps1 @@ -53,7 +53,7 @@ function vercomp($v1, $v2) { } $rustVersion = $(rustc --version).Split(" ")[1] -$minRustVersion = "1.56" +$minRustVersion = "1.70" if ((vercomp $rustVersion $minRustVersion) -eq 2) { Write-Host "WARNING: Rust version is too old: $rustVersion - needs at least $minRustVersion" Write-Host "Please update Rust with 'rustup update'" |
