Skip to content

Commit

Permalink
Ignore/allow clippy warning arc_with_non_send_sync
Browse files Browse the repository at this point in the history
A significant number (all?) uses of `Arc` in Druid wrap non-Send non-
Sync values. This doesn't make them invalid (I think?) but CI denies
all warnings so we need to allow this one.
  • Loading branch information
atlanticaccent committed Nov 17, 2023
1 parent 9f5531f commit 6cd66ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions druid-shell/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#![warn(rustdoc::broken_intra_doc_links)]
#![allow(clippy::new_without_default)]
#![allow(clippy::arc_with_non_send_sync)]
#![deny(clippy::trivially_copy_pass_by_ref)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png"
Expand Down

0 comments on commit 6cd66ff

Please sign in to comment.