diff options
| author | Sebastian Holmin <sebastain@holmin@mullvad.com> | 2025-07-07 15:59:02 +0200 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2025-07-09 16:28:05 +0200 |
| commit | 7259eabc670ef78a2ab6029cd99f6708ac6f2754 (patch) | |
| tree | 9c5e7e9e839a58ae5eecf56e656b0353ff1565a3 | |
| parent | 299da4a08cfb2ccc98a2a7cab05d6304dad02501 (diff) | |
| download | mullvadvpn-7259eabc670ef78a2ab6029cd99f6708ac6f2754.tar.xz mullvadvpn-7259eabc670ef78a2ab6029cd99f6708ac6f2754.zip | |
Allow undocumented unsafe code in `mullvad-ios`
Since upgrading the Rust version enforces many new
unsafe blocks, we have to temporarily disable this lint
to upgrade the Rust edition.
| -rw-r--r-- | mullvad-ios/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mullvad-ios/src/lib.rs b/mullvad-ios/src/lib.rs index b98960f158..305e044fd5 100644 --- a/mullvad-ios/src/lib.rs +++ b/mullvad-ios/src/lib.rs @@ -1,4 +1,5 @@ #![cfg(target_os = "ios")] +#![allow(clippy::undocumented_unsafe_blocks)] use libc::c_char; use std::ffi::CStr; use std::sync::OnceLock; |
