From ab14c50d1cd165982007e1bf4ff49c9a242f2494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 14 Jan 2022 11:25:49 +0200 Subject: Ignore `clippy::non_send_fields_in_send_ty` lint It's useless in its current shape and wrongly triggering on all types. See https://github.com/rust-lang/rust-clippy/issues/8045 --- tutorial/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tutorial') diff --git a/tutorial/src/lib.rs b/tutorial/src/lib.rs index 83fb8eac0..e43d7e7cf 100644 --- a/tutorial/src/lib.rs +++ b/tutorial/src/lib.rs @@ -5,6 +5,7 @@ // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. +#![allow(clippy::non_send_fields_in_send_ty)] use gst::glib; -- cgit v1.2.3