Merge pull request #1686 from dieterplex/mrv4clap

fix(installation): bump MinRustVersion to 1.70
This commit is contained in:
liv 2023-09-26 10:59:08 +02:00 committed by GitHub
commit d7e1064b13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ function vercomp($v1, $v2) {
} }
$rustVersion = $(rustc --version).Split(" ")[1] $rustVersion = $(rustc --version).Split(" ")[1]
$minRustVersion = "1.56" $minRustVersion = "1.70"
if ((vercomp $rustVersion $minRustVersion) -eq 2) { if ((vercomp $rustVersion $minRustVersion) -eq 2) {
Write-Host "WARNING: Rust version is too old: $rustVersion - needs at least $minRustVersion" Write-Host "WARNING: Rust version is too old: $rustVersion - needs at least $minRustVersion"
Write-Host "Please update Rust with 'rustup update'" Write-Host "Please update Rust with 'rustup update'"

View file

@ -124,7 +124,7 @@ function vercomp() {
} }
RustVersion=$(rustc --version | cut -d " " -f 2) RustVersion=$(rustc --version | cut -d " " -f 2)
MinRustVersion=1.58 MinRustVersion=1.70
vercomp "$RustVersion" $MinRustVersion || ec=$? vercomp "$RustVersion" $MinRustVersion || ec=$?
if [ ${ec:-0} -eq 2 ] if [ ${ec:-0} -eq 2 ]
then then