We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11e9e3e commit 3b71321Copy full SHA for 3b71321
mctp-estack/src/lib.rs
@@ -29,6 +29,9 @@
29
#![forbid(unsafe_code)]
30
#![allow(clippy::int_plus_one)]
31
#![allow(clippy::too_many_arguments)]
32
+// defmt does not currently allow inline format arguments, so we don't want
33
+// those reworked when using the log crate either.
34
+#![allow(clippy::uninlined_format_args)]
35
36
/// Re-exported so that callers can use the same `heapless` version.
37
///
mctp-usb-embassy/src/lib.rs
@@ -4,6 +4,9 @@
4
*/
5
#![no_std]
6
7
8
9
10
11
//! # MCTP over USB transport for `embassy-usb`.
12
//!
0 commit comments