Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-01-14 12:25:49 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-01-14 13:09:57 +0300
commitab14c50d1cd165982007e1bf4ff49c9a242f2494 (patch)
tree2e74ae9bab33f91d2d41b4c567e90fcc74ac42d3 /audio
parent3cc2b3275671b3ca66818fd5765f721914711696 (diff)
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
Diffstat (limited to 'audio')
-rw-r--r--audio/audiofx/src/lib.rs1
-rw-r--r--audio/claxon/src/lib.rs1
-rw-r--r--audio/csound/src/lib.rs1
-rw-r--r--audio/lewton/src/lib.rs1
-rw-r--r--audio/spotify/src/lib.rs1
5 files changed, 5 insertions, 0 deletions
diff --git a/audio/audiofx/src/lib.rs b/audio/audiofx/src/lib.rs
index dcf2b1770..f7f64587e 100644
--- a/audio/audiofx/src/lib.rs
+++ b/audio/audiofx/src/lib.rs
@@ -5,6 +5,7 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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;
diff --git a/audio/claxon/src/lib.rs b/audio/claxon/src/lib.rs
index 2476b877c..215d2c56d 100644
--- a/audio/claxon/src/lib.rs
+++ b/audio/claxon/src/lib.rs
@@ -5,6 +5,7 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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;
diff --git a/audio/csound/src/lib.rs b/audio/csound/src/lib.rs
index 1e920fbe1..04a6ac8f4 100644
--- a/audio/csound/src/lib.rs
+++ b/audio/csound/src/lib.rs
@@ -14,6 +14,7 @@
// License along with this library; if not, write to the
// Free Software Foundation, Inc., 51 Franklin Street, Suite 500,
// Boston, MA 02110-1335, USA.
+#![allow(clippy::non_send_fields_in_send_ty)]
use gst::glib;
diff --git a/audio/lewton/src/lib.rs b/audio/lewton/src/lib.rs
index da5bb434d..b6e68a8ef 100644
--- a/audio/lewton/src/lib.rs
+++ b/audio/lewton/src/lib.rs
@@ -5,6 +5,7 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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;
diff --git a/audio/spotify/src/lib.rs b/audio/spotify/src/lib.rs
index b9c9dd8bc..72771b28e 100644
--- a/audio/spotify/src/lib.rs
+++ b/audio/spotify/src/lib.rs
@@ -5,6 +5,7 @@
// <https://mozilla.org/MPL/2.0/>.
//
// SPDX-License-Identifier: MPL-2.0
+#![allow(clippy::non_send_fields_in_send_ty)]
use gst::glib;