diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2024-01-11 16:03:36 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2025-02-04 14:22:33 +0100 |
| commit | a80feea09e0652842bc8e9d27014e0f4d6d867a1 (patch) | |
| tree | 53fd1e4c6acd0a415c9b7a830e21d1b5712eb518 | |
| parent | 2f3c791a25d401f9ea9a633ebaa0eb679a517548 (diff) | |
| download | mullvadvpn-a80feea09e0652842bc8e9d27014e0f4d6d867a1.tar.xz mullvadvpn-a80feea09e0652842bc8e9d27014e0f4d6d867a1.zip | |
Add rust-toolchain.toml specifying Rust 1.83.0
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | rust-toolchain.toml | 3 |
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" |
