Move attributes for the bindings module to its mod.rs.

This commit is contained in:
Ms2ger 2016-06-08 12:21:16 +02:00
parent 86d59212fe
commit 8f2d624cbf
2 changed files with 5 additions and 3 deletions

View file

@ -129,6 +129,10 @@
//! return `Err()` from the method with the appropriate [error value] //! return `Err()` from the method with the appropriate [error value]
//! (error/enum.Error.html). //! (error/enum.Error.html).
#![allow(unsafe_code)]
#![deny(missing_docs)]
#![deny(non_snake_case)]
pub mod callback; pub mod callback;
pub mod cell; pub mod cell;
pub mod constant; pub mod constant;

View file

@ -217,9 +217,6 @@ pub mod abstractworkerglobalscope;
pub mod activation; pub mod activation;
pub mod attr; pub mod attr;
pub mod beforeunloadevent; pub mod beforeunloadevent;
mod create;
#[allow(unsafe_code)]
#[deny(missing_docs, non_snake_case)]
pub mod bindings; pub mod bindings;
pub mod blob; pub mod blob;
pub mod bluetooth; pub mod bluetooth;
@ -240,6 +237,7 @@ pub mod client;
pub mod closeevent; pub mod closeevent;
pub mod comment; pub mod comment;
pub mod console; pub mod console;
mod create;
pub mod crypto; pub mod crypto;
pub mod css; pub mod css;
pub mod cssfontfacerule; pub mod cssfontfacerule;