rust: ignore not available documentation
authorCarsten Schoenert <c.schoenert@t-online.de>
Wed, 22 May 2019 19:48:32 +0000 (21:48 +0200)
committerCarsten Schoenert <c.schoenert@t-online.de>
Fri, 21 Jun 2019 16:48:43 +0000 (17:48 +0100)
Picked up from a patch list for FF from Arch.

Gbp-Pq: Topic fixes
Gbp-Pq: Name rust-ignore-not-available-documentation.patch

servo/components/style/lib.rs
servo/components/style_traits/lib.rs

index 49acbe35f13923d5f28caf409d59dd9b96109a97..0d3871c0e3600e6affa5704398bd80ebdc7c4d72 100644 (file)
@@ -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"));
 }
index 3b7304b1aa74aec629f0f92d4b82af53a296542b..0f05333e3460a26d023d55d75ea4ffad85be5b10 100644 (file)
@@ -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;