From 2e7ddcb195da42b8dab2f32f20be1d29b5764a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Sat, 26 Aug 2023 21:49:14 +0200 Subject: [PATCH] Allow arc_with_non_send_sync in wasm client --- clients/webassembly/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clients/webassembly/src/lib.rs b/clients/webassembly/src/lib.rs index af6d657940..a4d3aeaad4 100644 --- a/clients/webassembly/src/lib.rs +++ b/clients/webassembly/src/lib.rs @@ -1,6 +1,10 @@ // Copyright 2021-2023 - Nym Technologies SA // SPDX-License-Identifier: Apache-2.0 +// After reading https://github.com/rust-lang/rust-clippy/issues/11382 +// I suspect we *maybe* have hit a false positive, but I'm not sure. +#![allow(clippy::arc_with_non_send_sync)] + use wasm_bindgen::prelude::*; #[cfg(target_arch = "wasm32")]