Skip to content

Commit 3ccce33

Browse files
0xPoetaiki-e
authored andcommitted
Make clippy happy
Signed-off-by: hi-rustin <rustin.liu@gmail.com>
1 parent 3bae0e8 commit 3ccce33

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

futures-channel/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
allow(dead_code, unused_assignments, unused_variables)
2727
)
2828
))]
29-
#![allow(clippy::if_then_panic)]
3029

3130
#[cfg(not(futures_no_atomic_cas))]
3231
#[cfg(feature = "alloc")]

futures-task/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
allow(dead_code, unused_assignments, unused_variables)
1212
)
1313
))]
14+
#![allow(clippy::non_send_fields_in_send_ty)]
1415

1516
#[cfg(feature = "alloc")]
1617
extern crate alloc;

futures-test/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
allow(dead_code, unused_assignments, unused_variables)
1515
)
1616
))]
17-
#![allow(clippy::if_then_panic)]
1817

1918
#[cfg(not(feature = "std"))]
2019
compile_error!(

futures-util/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
)
2020
))]
2121
#![cfg_attr(docsrs, feature(doc_cfg))]
22+
#![allow(clippy::non_send_fields_in_send_ty)]
2223

2324
#[cfg(all(feature = "bilock", not(feature = "unstable")))]
2425
compile_error!("The `bilock` feature requires the `unstable` feature as an explicit opt-in to unstable features");

0 commit comments

Comments
 (0)