Skip to content

Commit 0c76ab3

Browse files
committed
allow clippy::arc_with_non_send_sync
Signed-off-by: hi-rustin <[email protected]>
1 parent a3b67de commit 0c76ab3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
clippy::type_complexity,
55
clippy::upper_case_acronyms, // see https://github.com/rust-lang/rust-clippy/issues/6974
66
clippy::vec_init_then_push, // uses two different styles of initialization
7-
clippy::box_default, // its ugly and outside of inner loops irrelevant
7+
clippy::box_default, // its ugly and outside of inner loops irrelevant
88
clippy::result_large_err, // 288 bytes is our 'large' variant today, which is unlikely to be a performance problem
9+
clippy::arc_with_non_send_sync, // will get resolved as we move further into async
910
)]
1011
#![recursion_limit = "1024"]
1112

0 commit comments

Comments
 (0)