chore: Allow clippy::arc_with_non_send_sync temporarily

Triggers false positives for types with generics.
This commit is contained in:
Kévin Commaille 2023-07-04 11:26:40 +02:00 committed by Kévin Commaille
parent 8a342affca
commit ae83055119

View File

@ -34,6 +34,9 @@ rustflags = [
"-Wclippy::unreadable_literal", "-Wclippy::unreadable_literal",
"-Wclippy::unseparated_literal_suffix", "-Wclippy::unseparated_literal_suffix",
"-Wclippy::wildcard_imports", "-Wclippy::wildcard_imports",
# Disabled temporarily because it triggers false positives for types with
# generics.
"-Aclippy::arc_with_non_send_sync",
] ]
[unstable] [unstable]