From 03b843ebf3879cc64b9e7965b41ce576d9150387 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 15 Aug 2024 11:46:43 -0400 Subject: [PATCH] live_kit_client: Suppress `clippy::arc_with_non_send_sync` (#16298) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR suppresses the [`clippy::arc_with_non_send_sync`](https://rust-lang.github.io/rust-clippy/master/index.html#/arc_with_non_send_sync), as there were some warnings that would—only sometimes—show up when running Clippy. Release Notes: - N/A --- crates/live_kit_client/src/live_kit_client.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/live_kit_client/src/live_kit_client.rs b/crates/live_kit_client/src/live_kit_client.rs index 1e9054e73c..4820a4eedb 100644 --- a/crates/live_kit_client/src/live_kit_client.rs +++ b/crates/live_kit_client/src/live_kit_client.rs @@ -1,3 +1,5 @@ +#![allow(clippy::arc_with_non_send_sync)] + use std::sync::Arc; #[cfg(all(target_os = "macos", not(any(test, feature = "test-support"))))]