Skip to content

Commit

Permalink
allow clippy::arc_with_non_send_sync
Browse files Browse the repository at this point in the history
Signed-off-by: hi-rustin <[email protected]>
  • Loading branch information
Rustin170506 committed Jul 18, 2023
1 parent a3b67de commit 0c76ab3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
clippy::type_complexity,
clippy::upper_case_acronyms, // see https://github.com/rust-lang/rust-clippy/issues/6974
clippy::vec_init_then_push, // uses two different styles of initialization
clippy::box_default, // its ugly and outside of inner loops irrelevant
clippy::box_default, // its ugly and outside of inner loops irrelevant
clippy::result_large_err, // 288 bytes is our 'large' variant today, which is unlikely to be a performance problem
clippy::arc_with_non_send_sync, // will get resolved as we move further into async
)]
#![recursion_limit = "1024"]

Expand Down

0 comments on commit 0c76ab3

Please sign in to comment.