Auto merge of #9275 - Ms2ger:extern-crate, r=larsbergstrom

Remove some unused extern crates.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9275)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-01-13 21:16:35 +05:30
commit 0b5dda3e9c
26 changed files with 0 additions and 72 deletions

View file

@ -36,9 +36,6 @@ path = "../devtools_traits"
[dependencies.style]
path = "../style"
[dependencies.style_traits]
path = "../style_traits"
[dependencies.canvas]
path = "../canvas"

View file

@ -20,7 +20,6 @@
#![feature(plugin)]
#![feature(slice_patterns)]
#![feature(str_utf16)]
#![feature(unicode)]
#![deny(unsafe_code)]
#![allow(non_snake_case)]
@ -60,7 +59,6 @@ extern crate profile_traits;
extern crate rand;
extern crate ref_slice;
extern crate rustc_serialize;
extern crate rustc_unicode;
extern crate script_traits;
#[macro_use(state_pseudo_classes)] extern crate selectors;
extern crate serde;
@ -68,7 +66,6 @@ extern crate smallvec;
#[macro_use(atom, ns)] extern crate string_cache;
#[macro_use]
extern crate style;
extern crate style_traits;
extern crate tendril;
extern crate time;
extern crate unicase;