summaryrefslogtreecommitdiff
path: root/install.ps1
diff options
context:
space:
mode:
authorCaleb Webber <caleb@codingthemsoftly.com>2020-11-05 03:59:25 -0500
committerGitHub <noreply@github.com>2020-11-05 09:59:25 +0100
commit21bfb2d4777429c87d8d3b5fbf0ce66006dcd034 (patch)
treeee83eaf1386d06116e5a0cd74e5c5f51ffa3705b /install.ps1
parenta9dae7118896840cee9e08dbd2b04dc6425ae522 (diff)
fix(installation): Update the MinRustVersion
closes #577df Co-authored-by: Caleb Webber <seeplusplus@users.noreply.github.com>
Diffstat (limited to 'install.ps1')
-rw-r--r--install.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/install.ps1 b/install.ps1
index f7472ad..32167f0 100644
--- a/install.ps1
+++ b/install.ps1
@@ -53,7 +53,7 @@ function vercomp($v1, $v2) {
}
$rustVersion = $(rustc --version).Split(" ")[1]
-$minRustVersion = "1.31"
+$minRustVersion = "1.39"
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'"