summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2024-01-11 16:03:36 +0100
committerLinus Färnstrand <linus@mullvad.net>2025-02-04 14:22:33 +0100
commita80feea09e0652842bc8e9d27014e0f4d6d867a1 (patch)
tree53fd1e4c6acd0a415c9b7a830e21d1b5712eb518
parent2f3c791a25d401f9ea9a633ebaa0eb679a517548 (diff)
downloadmullvadvpn-a80feea09e0652842bc8e9d27014e0f4d6d867a1.tar.xz
mullvadvpn-a80feea09e0652842bc8e9d27014e0f4d6d867a1.zip
Add rust-toolchain.toml specifying Rust 1.83.0
-rw-r--r--Cargo.toml1
-rw-r--r--rust-toolchain.toml3
2 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 836f819e9a..cf9ca31acf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,6 +3,7 @@ authors = ["Mullvad VPN"]
repository = "https://github.com/mullvad/mullvadvpn-app/"
license = "GPL-3.0"
edition = "2021"
+# Must be less than or equal to `channel` in `rust-toolchain.toml`
rust-version = "1.80.0"
[workspace]
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
new file mode 100644
index 0000000000..efba5d8d0f
--- /dev/null
+++ b/rust-toolchain.toml
@@ -0,0 +1,3 @@
+[toolchain]
+# Must be greater than or equal to `rust-version` in `Cargo.toml`
+channel = "1.83.0"