live_kit_client: Suppress clippy::arc_with_non_send_sync (#16298)

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
This commit is contained in:
Marshall Bowers 2024-08-15 11:46:43 -04:00 committed by GitHub
parent 02ea6ac845
commit 03b843ebf3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"))))]