2016-01-10 04:44:17 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2016-01-19 11:49:10 +03:00
|
|
|
#![feature(as_unsafe_cell)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
#![feature(ptr_as_ref)]
|
2016-02-14 01:29:59 +03:00
|
|
|
#![feature(custom_derive)]
|
|
|
|
#![feature(plugin)]
|
|
|
|
|
|
|
|
#![plugin(heapsize_plugin)]
|
|
|
|
#![plugin(plugins)]
|
2016-01-19 11:49:10 +03:00
|
|
|
|
|
|
|
extern crate app_units;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate bitflags;
|
2016-02-14 01:29:59 +03:00
|
|
|
#[macro_use]
|
2016-01-19 11:49:10 +03:00
|
|
|
extern crate cssparser;
|
|
|
|
extern crate euclid;
|
2016-02-14 01:29:59 +03:00
|
|
|
extern crate heapsize;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2016-01-19 11:49:10 +03:00
|
|
|
extern crate libc;
|
2016-02-14 01:29:59 +03:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2016-01-19 11:49:10 +03:00
|
|
|
extern crate num_cpus;
|
|
|
|
extern crate selectors;
|
|
|
|
extern crate smallvec;
|
|
|
|
#[macro_use(atom, ns)]
|
|
|
|
extern crate string_cache;
|
2016-01-10 04:44:17 +03:00
|
|
|
extern crate style;
|
2016-01-19 11:49:10 +03:00
|
|
|
extern crate url;
|
|
|
|
extern crate util;
|
|
|
|
|
|
|
|
#[allow(dead_code, non_camel_case_types)]
|
|
|
|
mod bindings;
|
2016-02-04 20:55:09 +03:00
|
|
|
mod data;
|
2016-01-19 11:49:10 +03:00
|
|
|
#[allow(non_snake_case)]
|
|
|
|
pub mod glue;
|
2016-02-14 01:29:59 +03:00
|
|
|
mod selector_impl;
|
2016-02-04 20:55:09 +03:00
|
|
|
mod traversal;
|
2016-01-19 11:49:10 +03:00
|
|
|
mod wrapper;
|