We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6e7f2 commit cc57e1dCopy full SHA for cc57e1d
cortex-m-semihosting/src/export.rs
@@ -3,6 +3,8 @@
3
// This must be replaced by a different solution before rust edition 2024
4
// https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html
5
#![allow(static_mut_refs)]
6
+// the above lint is not known in our MSRV, so allow unknown lints
7
+#![allow(unknown_lints)]
8
9
use core::fmt::{self, Write};
10
0 commit comments