Remove use of serde custom derive plugin in net

This commit is contained in:
Anthony Ramine 2016-11-03 10:10:00 +01:00
parent c6e15f8ef2
commit 0a48c69061
4 changed files with 9 additions and 0 deletions

View file

@ -34,6 +34,8 @@ plugins = {path = "../plugins"}
profile_traits = {path = "../profile_traits"}
rand = "0.3"
rustc-serialize = "0.3"
serde = "0.8"
serde_derive = "0.8"
threadpool = "1.0"
time = "0.1.17"
unicase = "1.4.0"

View file

@ -8,6 +8,7 @@
#![feature(fnbox)]
#![feature(mpsc_select)]
#![feature(plugin)]
#![feature(proc_macro)]
#![plugin(plugins)]
#![deny(unsafe_code)]
@ -37,6 +38,8 @@ extern crate openssl_verify;
extern crate profile_traits;
extern crate rand;
extern crate rustc_serialize;
#[macro_use]
extern crate serde_derive;
extern crate threadpool;
extern crate time;
#[cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))]