We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9dae71 commit 0e47f85Copy full SHA for 0e47f85
install.ps1
@@ -53,7 +53,7 @@ function vercomp($v1, $v2) {
53
}
54
55
$rustVersion = $(rustc --version).Split(" ")[1]
56
-$minRustVersion = "1.31"
+$minRustVersion = "1.39"
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
@@ -87,7 +87,7 @@ function vercomp() {
87
88
89
RustVersion=$(rustc --version | cut -d " " -f 2)
90
-MinRustVersion=1.31
+MinRustVersion=1.39
91
vercomp $RustVersion $MinRustVersion
92
if [ $? -eq 2 ]
93
then
0 commit comments