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"))))]
Marshall Bowers created
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(+)
@@ -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"))))]