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

@ -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"))]