From: Carsten Schoenert Date: Wed, 22 May 2019 19:48:32 +0000 (+0200) Subject: rust: ignore not available documentation X-Git-Tag: archive/raspbian/1%60.7.2-1+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ed142ab2ca36779810523f6e80df60b47e2c4846;p=thunderbird.git rust: ignore not available documentation Picked up from a patch list for FF from Arch. Gbp-Pq: Topic fixes Gbp-Pq: Name rust-ignore-not-available-documentation.patch --- diff --git a/servo/components/style/lib.rs b/servo/components/style/lib.rs index 49acbe35f1..0d3871c0e3 100644 --- a/servo/components/style/lib.rs +++ b/servo/components/style/lib.rs @@ -23,7 +23,6 @@ //! [cssparser]: ../cssparser/index.html //! [selectors]: ../selectors/index.html -#![deny(missing_docs)] extern crate app_units; extern crate arrayvec; @@ -148,7 +147,6 @@ pub mod values; /// Generated from the properties.mako.rs template by build.rs #[macro_use] #[allow(unsafe_code)] -#[deny(missing_docs)] pub mod properties { include!(concat!(env!("OUT_DIR"), "/properties.rs")); } diff --git a/servo/components/style_traits/lib.rs b/servo/components/style_traits/lib.rs index 3b7304b1aa..0f05333e34 100644 --- a/servo/components/style_traits/lib.rs +++ b/servo/components/style_traits/lib.rs @@ -9,8 +9,6 @@ #![crate_name = "style_traits"] #![crate_type = "rlib"] -#![deny(unsafe_code, missing_docs)] - extern crate app_units; #[macro_use] extern crate bitflags; #[macro_use] extern crate cssparser;