fix(installation): bump MinRustVersion to 1.70

Since #1633 porting to Clap, min Rust version reqirement changes.
pull/1686/head
d1t2 9 months ago committed by GitHub
parent 06f865307f
commit 6aa47be78e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save