Skip to content

Commit 36292dc

Browse files
committed
Suppress uninlined format args warn
1 parent b16343f commit 36292dc

File tree

10 files changed

+20
-0
lines changed

10 files changed

+20
-0
lines changed

edge-captive/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#![cfg_attr(not(feature = "std"), no_std)]
22
#![warn(clippy::large_futures)]
3+
#![allow(clippy::uninlined_format_args)]
4+
#![allow(unknown_lints)]
35

46
use core::fmt::Display;
57
use core::time::Duration;

edge-dhcp/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#![cfg_attr(not(feature = "std"), no_std)]
22
#![warn(clippy::large_futures)]
3+
#![allow(clippy::uninlined_format_args)]
4+
#![allow(unknown_lints)]
35

46
/// This code is a `no_std` and no-alloc modification of https://github.com/krolaw/dhcp4r
57
use core::str::Utf8Error;

edge-http/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#![cfg_attr(not(feature = "std"), no_std)]
22
#![allow(async_fn_in_trait)]
33
#![warn(clippy::large_futures)]
4+
#![allow(clippy::uninlined_format_args)]
5+
#![allow(unknown_lints)]
46

57
use core::fmt::Display;
68
use core::str;

edge-mdns/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#![cfg_attr(not(feature = "std"), no_std)]
22
#![warn(clippy::large_futures)]
33
#![allow(async_fn_in_trait)]
4+
#![allow(clippy::uninlined_format_args)]
5+
#![allow(unknown_lints)]
46

57
use core::cmp::Ordering;
68
use core::fmt::Display;

edge-mqtt/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#![warn(clippy::large_futures)]
2+
#![allow(clippy::uninlined_format_args)]
3+
#![allow(unknown_lints)]
24

35
pub mod io;

edge-nal-embassy/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#![no_std]
22
#![allow(async_fn_in_trait)]
33
#![warn(clippy::large_futures)]
4+
#![allow(clippy::uninlined_format_args)]
5+
#![allow(unknown_lints)]
46

57
use core::cell::{Cell, UnsafeCell};
68
use core::mem::MaybeUninit;

edge-nal-std/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#![allow(async_fn_in_trait)]
22
#![warn(clippy::large_futures)]
3+
#![allow(clippy::uninlined_format_args)]
4+
#![allow(unknown_lints)]
35

46
use core::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr};
57
use core::ops::Deref;

edge-nal/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#![no_std]
22
#![allow(async_fn_in_trait)]
3+
#![allow(clippy::uninlined_format_args)]
4+
#![allow(unknown_lints)]
35

46
pub use multicast::*;
57
pub use raw::*;

edge-raw/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#![cfg_attr(not(feature = "std"), no_std)]
22
#![allow(async_fn_in_trait)]
33
#![warn(clippy::large_futures)]
4+
#![allow(clippy::uninlined_format_args)]
5+
#![allow(unknown_lints)]
46

57
use core::net::{Ipv4Addr, SocketAddrV4};
68

edge-ws/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#![cfg_attr(not(feature = "std"), no_std)]
22
#![allow(async_fn_in_trait)]
33
#![warn(clippy::large_futures)]
4+
#![allow(clippy::uninlined_format_args)]
5+
#![allow(unknown_lints)]
46

57
pub type Fragmented = bool;
68
pub type Final = bool;

0 commit comments

Comments
 (0)