Remove explicit dependencies on serde_derive

This commit is contained in:
Simon Sapin 2017-06-16 13:58:21 +02:00
parent 76d8573393
commit 605ef8b7ec
42 changed files with 27 additions and 96 deletions

View file

@ -29,7 +29,6 @@ offscreen_gl_context = { version = "0.11", features = ["serde"] }
profile_traits = {path = "../profile_traits"}
rustc-serialize = "0.3.4"
serde = "1.0"
serde_derive = "1.0"
servo_atoms = {path = "../atoms"}
servo_url = {path = "../url"}
style_traits = {path = "../style_traits", features = ["servo"]}

View file

@ -28,9 +28,7 @@ extern crate net_traits;
extern crate offscreen_gl_context;
extern crate profile_traits;
extern crate rustc_serialize;
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[macro_use] extern crate serde;
extern crate servo_atoms;
extern crate servo_url;
extern crate style_traits;