diff --git a/.all-contributorsrc b/.all-contributorsrc
index 0239dd4..27f69c3 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -2442,6 +2442,14 @@
"contributions": [
"infra"
]
+ },
+ "login": "dieterplex",
+ "name": "d1t2",
+ "avatar_url": "https://avatars.githubusercontent.com/u/507502?v=4",
+ "profile": "https://github.com/dieterplex",
+ "contributions": [
+ "infra"
+ ]
}
],
"contributorsPerLine": 8,
diff --git a/AUTHORS.md b/AUTHORS.md
index 09d7480..a2decea 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -345,6 +345,7 @@ authors.
Jurglic 🖋 |
Ofir Lauber 🖋 |
Chris Rose 🚇 |
+ d1t2 🚇 |
diff --git a/install.ps1 b/install.ps1
index 7bab21f..844b013 100644
--- a/install.ps1
+++ b/install.ps1
@@ -53,7 +53,7 @@ function vercomp($v1, $v2) {
}
$rustVersion = $(rustc --version).Split(" ")[1]
-$minRustVersion = "1.56"
+$minRustVersion = "1.70"
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 4ee56bb..9aca5b6 100755
--- a/install.sh
+++ b/install.sh
@@ -124,7 +124,7 @@ function vercomp() {
}
RustVersion=$(rustc --version | cut -d " " -f 2)
-MinRustVersion=1.58
+MinRustVersion=1.70
vercomp "$RustVersion" $MinRustVersion || ec=$?
if [ ${ec:-0} -eq 2 ]
then