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
parent31a53bba8ae22d4be44861c868fb663fd46a69a3 (diff)
Allow "unused_doc_comments" as we use hotdoc and not rustdoc
-rw-r--r--audio/audiofx/src/lib.rs2
-rw-r--r--audio/claxon/src/lib.rs2
-rw-r--r--audio/csound/src/lib.rs2
-rw-r--r--audio/lewton/src/lib.rs2
-rw-r--r--audio/spotify/src/lib.rs2
-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
-rw-r--r--net/aws/src/lib.rs2
-rw-r--r--net/hlssink3/src/lib.rs2
-rw-r--r--net/onvif/src/lib.rs2
-rw-r--r--net/raptorq/src/lib.rs2
-rw-r--r--net/reqwest/src/lib.rs2
-rw-r--r--text/ahead/src/lib.rs2
-rw-r--r--text/json/src/lib.rs2
-rw-r--r--text/regex/src/lib.rs2
-rw-r--r--text/wrap/src/lib.rs2
-rw-r--r--tutorial/src/lib.rs2
-rw-r--r--utils/fallbackswitch/src/lib.rs2
-rw-r--r--utils/togglerecord/src/lib.rs2
-rw-r--r--utils/tracers/src/lib.rs2
-rw-r--r--utils/uriplaylistbin/src/lib.rs2
-rw-r--r--video/cdg/src/lib.rs2
-rw-r--r--video/closedcaption/src/lib.rs2
-rw-r--r--video/dav1d/src/lib.rs2
-rw-r--r--video/ffv1/src/lib.rs2
-rw-r--r--video/flavors/src/lib.rs2
-rw-r--r--video/gif/src/lib.rs2
-rw-r--r--video/gtk4/src/lib.rs2
-rw-r--r--video/hsv/src/lib.rs2
-rw-r--r--video/rav1e/src/lib.rs2
-rw-r--r--video/rspng/src/lib.rs2
-rw-r--r--video/videofx/src/lib.rs2
-rw-r--r--video/webp/src/lib.rs2
36 files changed, 36 insertions, 36 deletions
diff --git a/audio/audiofx/src/lib.rs b/audio/audiofx/src/lib.rs
index 345317b12..ded320545 100644
--- a/audio/audiofx/src/lib.rs
+++ b/audio/audiofx/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-rsaudiofx:
diff --git a/audio/claxon/src/lib.rs b/audio/claxon/src/lib.rs
index 6483a8719..dd1e2df37 100644
--- a/audio/claxon/src/lib.rs
+++ b/audio/claxon/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-claxon:
diff --git a/audio/csound/src/lib.rs b/audio/csound/src/lib.rs
index f38b09a55..d01016714 100644
--- a/audio/csound/src/lib.rs
+++ b/audio/csound/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-csound:
diff --git a/audio/lewton/src/lib.rs b/audio/lewton/src/lib.rs
index 7338be3ce..3125a562d 100644
--- a/audio/lewton/src/lib.rs
+++ b/audio/lewton/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)]
use gst::glib;
diff --git a/audio/spotify/src/lib.rs b/audio/spotify/src/lib.rs
index 6bd716277..cfce28a52 100644
--- a/audio/spotify/src/lib.rs
+++ b/audio/spotify/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-spotify:
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;
diff --git a/net/aws/src/lib.rs b/net/aws/src/lib.rs
index 90b61bca1..8371a2525 100644
--- a/net/aws/src/lib.rs
+++ b/net/aws/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-aws:
diff --git a/net/hlssink3/src/lib.rs b/net/hlssink3/src/lib.rs
index 5e8f8852b..c6fa71916 100644
--- a/net/hlssink3/src/lib.rs
+++ b/net/hlssink3/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-hlssink3:
diff --git a/net/onvif/src/lib.rs b/net/onvif/src/lib.rs
index 9e36a2063..b0fabd31a 100644
--- a/net/onvif/src/lib.rs
+++ b/net/onvif/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-rsonvif:
diff --git a/net/raptorq/src/lib.rs b/net/raptorq/src/lib.rs
index e9e8072f1..3891efbe6 100644
--- a/net/raptorq/src/lib.rs
+++ b/net/raptorq/src/lib.rs
@@ -4,7 +4,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#![allow(clippy::non_send_fields_in_send_ty)]
+#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
#![doc = include_str!("../README.md")]
/**
diff --git a/net/reqwest/src/lib.rs b/net/reqwest/src/lib.rs
index 1819812d7..39d87d4f3 100644
--- a/net/reqwest/src/lib.rs
+++ b/net/reqwest/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-reqwest:
diff --git a/text/ahead/src/lib.rs b/text/ahead/src/lib.rs
index 5e9afa43d..fac1052fe 100644
--- a/text/ahead/src/lib.rs
+++ b/text/ahead/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-textahead:
diff --git a/text/json/src/lib.rs b/text/json/src/lib.rs
index 29c0e811a..28370d7c1 100644
--- a/text/json/src/lib.rs
+++ b/text/json/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)]
#![recursion_limit = "128"]
/**
diff --git a/text/regex/src/lib.rs b/text/regex/src/lib.rs
index bb7743697..f51201b03 100644
--- a/text/regex/src/lib.rs
+++ b/text/regex/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)]
#![recursion_limit = "128"]
/**
diff --git a/text/wrap/src/lib.rs b/text/wrap/src/lib.rs
index d7cb8e90b..f5ae94ef0 100644
--- a/text/wrap/src/lib.rs
+++ b/text/wrap/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)]
#![recursion_limit = "128"]
/**
diff --git a/tutorial/src/lib.rs b/tutorial/src/lib.rs
index 9f7998ef0..b7a5d3186 100644
--- a/tutorial/src/lib.rs
+++ b/tutorial/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)]
use gst::glib;
diff --git a/utils/fallbackswitch/src/lib.rs b/utils/fallbackswitch/src/lib.rs
index 78b4634b5..ae73d029d 100644
--- a/utils/fallbackswitch/src/lib.rs
+++ b/utils/fallbackswitch/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-fallbackswitch:
diff --git a/utils/togglerecord/src/lib.rs b/utils/togglerecord/src/lib.rs
index a3263657a..e0cf7f1ef 100644
--- a/utils/togglerecord/src/lib.rs
+++ b/utils/togglerecord/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-togglerecord:
diff --git a/utils/tracers/src/lib.rs b/utils/tracers/src/lib.rs
index c35189eb0..c9de99324 100644
--- a/utils/tracers/src/lib.rs
+++ b/utils/tracers/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-rstracers:
diff --git a/utils/uriplaylistbin/src/lib.rs b/utils/uriplaylistbin/src/lib.rs
index 6a6057f5e..2e7ebe766 100644
--- a/utils/uriplaylistbin/src/lib.rs
+++ b/utils/uriplaylistbin/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-uriplaylistbin:
diff --git a/video/cdg/src/lib.rs b/video/cdg/src/lib.rs
index 03dd36298..0c7e03944 100644
--- a/video/cdg/src/lib.rs
+++ b/video/cdg/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-cdg:
diff --git a/video/closedcaption/src/lib.rs b/video/closedcaption/src/lib.rs
index 570c31433..a42039937 100644
--- a/video/closedcaption/src/lib.rs
+++ b/video/closedcaption/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)]
#![recursion_limit = "128"]
/**
diff --git a/video/dav1d/src/lib.rs b/video/dav1d/src/lib.rs
index f74aee42b..efb511401 100644
--- a/video/dav1d/src/lib.rs
+++ b/video/dav1d/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-rsdav1d:
diff --git a/video/ffv1/src/lib.rs b/video/ffv1/src/lib.rs
index d76b895fb..1bc71c3e6 100644
--- a/video/ffv1/src/lib.rs
+++ b/video/ffv1/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-ffv1:
diff --git a/video/flavors/src/lib.rs b/video/flavors/src/lib.rs
index dd9c0fcc8..7813d92e3 100644
--- a/video/flavors/src/lib.rs
+++ b/video/flavors/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-rsflv:
diff --git a/video/gif/src/lib.rs b/video/gif/src/lib.rs
index 3d3b33eba..7d57ac032 100644
--- a/video/gif/src/lib.rs
+++ b/video/gif/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-gif:
diff --git a/video/gtk4/src/lib.rs b/video/gtk4/src/lib.rs
index 21df1ba43..a666d3e6b 100644
--- a/video/gtk4/src/lib.rs
+++ b/video/gtk4/src/lib.rs
@@ -8,7 +8,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-gtk4:
diff --git a/video/hsv/src/lib.rs b/video/hsv/src/lib.rs
index 40e20e27f..92b88fcbe 100644
--- a/video/hsv/src/lib.rs
+++ b/video/hsv/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-hsv:
diff --git a/video/rav1e/src/lib.rs b/video/rav1e/src/lib.rs
index 3395fc22f..d3c6f588c 100644
--- a/video/rav1e/src/lib.rs
+++ b/video/rav1e/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-rav1e:
diff --git a/video/rspng/src/lib.rs b/video/rspng/src/lib.rs
index ce78256b9..030efc918 100644
--- a/video/rspng/src/lib.rs
+++ b/video/rspng/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-rspng:
diff --git a/video/videofx/src/lib.rs b/video/videofx/src/lib.rs
index 5dbb4bb24..66fd55846 100644
--- a/video/videofx/src/lib.rs
+++ b/video/videofx/src/lib.rs
@@ -6,7 +6,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-videofx:
diff --git a/video/webp/src/lib.rs b/video/webp/src/lib.rs
index 5b6061e7c..20b868538 100644
--- a/video/webp/src/lib.rs
+++ b/video/webp/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-rswebp: