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
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2022-08-29 18:41:33 +0300
committerThibault Saunier <tsaunier@igalia.com>2022-08-30 01:33:22 +0300
commit67e651f57c9674a6e64f00a946b352758373ce17 (patch)
tree874f13fba7c15afedf51e92c4454cf85073c8b71 /generic
parent31a53bba8ae22d4be44861c868fb663fd46a69a3 (diff)
Allow "unused_doc_comments" as we use hotdoc and not rustdoc
Diffstat (limited to 'generic')
-rw-r--r--generic/file/src/lib.rs2
-rw-r--r--generic/fmp4/src/lib.rs2
-rw-r--r--generic/sodium/src/lib.rs2
-rw-r--r--generic/threadshare/src/lib.rs2
-rw-r--r--generic/threadshare/tests/pad.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/generic/file/src/lib.rs b/generic/file/src/lib.rs
index bc11afd23..e2f02d7d6 100644
--- a/generic/file/src/lib.rs
+++ b/generic/file/src/lib.rs
@@ -7,7 +7,7 @@
// except according to those terms.
//
// SPDX-License-Identifier: MIT OR Apache-2.0
-#![allow(clippy::non_send_fields_in_send_ty)]
+#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
/**
* plugin-rsfile:
diff --git a/generic/fmp4/src/lib.rs b/generic/fmp4/src/lib.rs
index d44dbc2ce..697c7cbf1 100644
--- a/generic/fmp4/src/lib.rs
+++ b/generic/fmp4/src/lib.rs
@@ -5,7 +5,7 @@
// <https://mozilla.org/MPL/2.0/>.
//
// SPDX-License-Identifier: MPL-2.0
-#![allow(clippy::non_send_fields_in_send_ty)]
+#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
/**
* plugin-fmp4:
diff --git a/generic/sodium/src/lib.rs b/generic/sodium/src/lib.rs
index 7d88ee96a..2189e8474 100644
--- a/generic/sodium/src/lib.rs
+++ b/generic/sodium/src/lib.rs
@@ -19,7 +19,7 @@
// IN THE SOFTWARE.
//
// SPDX-License-Identifier: MIT
-#![allow(clippy::non_send_fields_in_send_ty)]
+#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
/**
* plugin-sodium:
diff --git a/generic/threadshare/src/lib.rs b/generic/threadshare/src/lib.rs
index 6067a2b0c..91debce1e 100644
--- a/generic/threadshare/src/lib.rs
+++ b/generic/threadshare/src/lib.rs
@@ -1,7 +1,7 @@
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
//
// Take a look at the license at the top of the repository in the LICENSE file.
-#![allow(clippy::non_send_fields_in_send_ty)]
+#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
//! A collection of GStreamer plugins which leverage the `threadshare` [`runtime`].
//!
diff --git a/generic/threadshare/tests/pad.rs b/generic/threadshare/tests/pad.rs
index 93b131914..3d2dfc3e4 100644
--- a/generic/threadshare/tests/pad.rs
+++ b/generic/threadshare/tests/pad.rs
@@ -17,7 +17,7 @@
// Boston, MA 02110-1335, USA.
//
// SPDX-License-Identifier: LGPL-2.1-or-later
-#![allow(clippy::non_send_fields_in_send_ty)]
+#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
use futures::channel::mpsc;
use futures::future::BoxFuture;