From 0e47f85647ceb72275933d3523abee1a73a78ce5 Mon Sep 17 00:00:00 2001
From: Caleb Webber <seeplusplus@users.noreply.github.com>
Date: Wed, 4 Nov 2020 18:43:00 -0500
Subject: [PATCH] fix(installation): Update the MinRustVersion

closes #577
---
 install.ps1 | 2 +-
 install.sh  | 2 +-
 2 files changed, 2 insertions(+), 2 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'"
diff --git a/install.sh b/install.sh
index a19c280..e986e74 100755
--- a/install.sh
+++ b/install.sh
@@ -87,7 +87,7 @@ function vercomp() {
 }
 
 RustVersion=$(rustc --version | cut -d " " -f 2)
-MinRustVersion=1.31
+MinRustVersion=1.39
 vercomp $RustVersion $MinRustVersion
 if [ $? -eq 2 ]
 then