From 67e651f57c9674a6e64f00a946b352758373ce17 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 29 Aug 2022 11:41:33 -0400 Subject: Allow "unused_doc_comments" as we use hotdoc and not rustdoc --- generic/file/src/lib.rs | 2 +- generic/fmp4/src/lib.rs | 2 +- generic/sodium/src/lib.rs | 2 +- generic/threadshare/src/lib.rs | 2 +- generic/threadshare/tests/pad.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'generic') 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 @@ // . // // 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 // // 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; -- cgit v1.2.3