summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2026-02-13 14:30:15 +0100
committerDavid Lönnhager <david.l@mullvad.net>2026-02-13 14:30:15 +0100
commitd1bdb07d5884e22be35e4691e8018b6dccaefdc8 (patch)
treed7dcf1639c57cb19aee6ee1e78b8448a091708d2
parentbd3fc2ac81101df3bd2f52e8a4a2d5400929b20e (diff)
downloadmullvadvpn-upgrade-rust-1.93.tar.xz
mullvadvpn-upgrade-rust-1.93.zip
Bump rust version to 1.93upgrade-rust-1.93
-rw-r--r--Cargo.toml2
-rw-r--r--mullvad-update/src/version/rollout.rs2
-rw-r--r--rust-toolchain.toml2
-rw-r--r--test/Cargo.toml2
4 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cb37f47f76..c15c88f2dc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -60,7 +60,7 @@ default-members = [
[workspace.package]
edition = "2024"
# Must be less than or equal to `channel` in `rust-toolchain.toml`
-rust-version = "1.91.0"
+rust-version = "1.93.0"
repository = "https://github.com/mullvad/mullvadvpn-app/"
license = "GPL-3.0-only"
diff --git a/mullvad-update/src/version/rollout.rs b/mullvad-update/src/version/rollout.rs
index daa18b76c7..6998ef595e 100644
--- a/mullvad-update/src/version/rollout.rs
+++ b/mullvad-update/src/version/rollout.rs
@@ -10,6 +10,7 @@ use serde::{Deserialize, Serialize, de::Error};
/// Rollout threshold. Any version in the response below this threshold will be ignored
///
/// INVARIANT: The inner f32 must be in the `VALID_ROLLOUT` range.
+#[expect(clippy::derive_ord_xor_partial_ord)]
#[derive(Debug, Clone, Copy, PartialOrd, PartialEq)]
pub struct Rollout(f32);
@@ -87,7 +88,6 @@ impl TryFrom<f32> for Rollout {
impl Eq for Rollout {}
-#[expect(clippy::derive_ord_xor_partial_ord)] // we impl Ord in terms of PartalOrd, so it's fine
impl Ord for Rollout {
fn cmp(&self, other: &Self) -> Ordering {
debug_assert!(self.0.is_finite());
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index 9414233dbe..33ba6d209b 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -1,3 +1,3 @@
[toolchain]
# Must be greater than or equal to `rust-version` in `Cargo.toml`
-channel = "1.91.0"
+channel = "1.93.0"
diff --git a/test/Cargo.toml b/test/Cargo.toml
index b9373459f9..1d735642a1 100644
--- a/test/Cargo.toml
+++ b/test/Cargo.toml
@@ -10,7 +10,7 @@ members = [
[workspace.package]
edition = "2024"
-rust-version = "1.91.0"
+rust-version = "1.93.0"
repository = "https://github.com/mullvad/mullvadvpn-app/"
license = "GPL-3.0-only"