mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
sorted the extern crate, mod & use declarations
This commit is contained in:
parent
705ad72aee
commit
889eec364b
194 changed files with 804 additions and 870 deletions
|
@ -16,40 +16,43 @@
|
|||
#![plugin(serde_macros)]
|
||||
#![plugin(plugins)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use] extern crate bitflags;
|
||||
|
||||
extern crate fnv;
|
||||
extern crate euclid;
|
||||
extern crate serde;
|
||||
extern crate smallvec;
|
||||
extern crate url;
|
||||
|
||||
#[macro_use]
|
||||
extern crate bitflags;
|
||||
#[macro_use]
|
||||
extern crate cssparser;
|
||||
|
||||
#[macro_use]
|
||||
extern crate matches;
|
||||
|
||||
extern crate encoding;
|
||||
extern crate rustc_serialize;
|
||||
extern crate string_cache;
|
||||
extern crate selectors;
|
||||
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
||||
extern crate num;
|
||||
extern crate util;
|
||||
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
#[macro_use]
|
||||
extern crate matches;
|
||||
#[macro_use]
|
||||
extern crate style_traits;
|
||||
extern crate encoding;
|
||||
extern crate euclid;
|
||||
extern crate fnv;
|
||||
extern crate num;
|
||||
extern crate rustc_serialize;
|
||||
extern crate selectors;
|
||||
extern crate serde;
|
||||
extern crate smallvec;
|
||||
extern crate string_cache;
|
||||
extern crate url;
|
||||
extern crate util;
|
||||
|
||||
pub mod animation;
|
||||
mod custom_properties;
|
||||
pub mod font_face;
|
||||
pub mod legacy;
|
||||
pub mod media_queries;
|
||||
pub mod node;
|
||||
pub mod parser;
|
||||
pub mod selector_matching;
|
||||
pub mod stylesheets;
|
||||
#[macro_use] pub mod values;
|
||||
#[macro_use]
|
||||
#[allow(non_camel_case_types)]
|
||||
pub mod values;
|
||||
pub mod viewport;
|
||||
|
||||
// Generated from the properties.mako.rs template by build.rs
|
||||
#[macro_use]
|
||||
|
@ -57,13 +60,6 @@ pub mod properties {
|
|||
include!(concat!(env!("OUT_DIR"), "/properties.rs"));
|
||||
}
|
||||
|
||||
pub mod animation;
|
||||
pub mod font_face;
|
||||
pub mod legacy;
|
||||
pub mod media_queries;
|
||||
pub mod node;
|
||||
pub mod viewport;
|
||||
|
||||
macro_rules! reexport_computed_values {
|
||||
( $( $name: ident )+ ) => {
|
||||
pub mod computed_values {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue