We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b7f3fe commit 268822dCopy full SHA for 268822d
install.ps1
@@ -53,7 +53,7 @@ function vercomp($v1, $v2) {
53
}
54
55
$rustVersion = $(rustc --version).Split(" ")[1]
56
-$minRustVersion = "1.39"
+$minRustVersion = "1.56"
57
if ((vercomp $rustVersion $minRustVersion) -eq 2) {
58
Write-Host "WARNING: Rust version is too old: $rustVersion - needs at least $minRustVersion"
59
Write-Host "Please update Rust with 'rustup update'"
install.sh
@@ -100,7 +100,7 @@ function vercomp() {
100
101
102
RustVersion=$(rustc --version | cut -d " " -f 2)
103
-MinRustVersion=1.39
+MinRustVersion=1.56
104
vercomp "$RustVersion" $MinRustVersion || ec=$?
105
if [ ${ec:-0} -eq 2 ]
106
then
0 commit comments