diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-update/src/version/rollout.rs | 2 | ||||
| -rw-r--r-- | rust-toolchain.toml | 2 | ||||
| -rw-r--r-- | test/Cargo.toml | 2 |
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" |
