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

@ -31,7 +31,6 @@ openssl = "0.9"
parse-hosts = "0.3.0"
profile_traits = {path = "../profile_traits"}
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
servo_config = {path = "../config"}
servo_url = {path = "../url"}

View file

@ -28,9 +28,7 @@ extern crate net_traits;
extern crate openssl;
extern crate parse_hosts;
extern crate profile_traits;
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[macro_use] extern crate serde;
extern crate serde_json;
extern crate servo_config;
extern crate servo_url;