We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06f8653 commit 6aa47beCopy full SHA for 6aa47be
install.ps1
@@ -53,7 +53,7 @@ function vercomp($v1, $v2) {
53
}
54
55
$rustVersion = $(rustc --version).Split(" ")[1]
56
-$minRustVersion = "1.56"
+$minRustVersion = "1.70"
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
@@ -124,7 +124,7 @@ function vercomp() {
124
125
126
RustVersion=$(rustc --version | cut -d " " -f 2)
127
-MinRustVersion=1.58
+MinRustVersion=1.70
128
vercomp "$RustVersion" $MinRustVersion || ec=$?
129
if [ ${ec:-0} -eq 2 ]
130
then
0 commit comments