We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clippy::arc_with_non_send_sync
1 parent a3b67de commit 0c76ab3Copy full SHA for 0c76ab3
src/lib.rs
@@ -4,8 +4,9 @@
4
clippy::type_complexity,
5
clippy::upper_case_acronyms, // see https://github.com/rust-lang/rust-clippy/issues/6974
6
clippy::vec_init_then_push, // uses two different styles of initialization
7
- clippy::box_default, // its ugly and outside of inner loops irrelevant
+ clippy::box_default, // its ugly and outside of inner loops irrelevant
8
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
10
)]
11
#![recursion_limit = "1024"]
12
0 commit comments