diff options
| author | liv <mokou@fastmail.com> | 2023-09-26 10:59:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-26 10:59:08 +0200 |
| commit | d7e1064b1369bde7715f422f040b75a00813871c (patch) | |
| tree | 02e82c557e85fc46ce568c5c31fdab9c216bad8c | |
| parent | fb2840ede5247997727750a29358d9c953fadab7 (diff) | |
| parent | 6aa47be78e9b80beec3bdd5b96a8f985138358b2 (diff) | |
Merge pull request #1686 from dieterplex/mrv4clap
fix(installation): bump MinRustVersion to 1.70
| -rw-r--r-- | install.ps1 | 2 | ||||
| -rwxr-xr-x | install.sh | 2 |
2 files changed, 2 insertions, 2 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'" @@ -124,7 +124,7 @@ function vercomp() { } RustVersion=$(rustc --version | cut -d " " -f 2) -MinRustVersion=1.58 +MinRustVersion=1.70 vercomp "$RustVersion" $MinRustVersion || ec=$? if [ ${ec:-0} -eq 2 ] then |
