Remove unused 'extern crate's.

This commit is contained in:
Sergio Benitez 2017-08-31 17:03:47 -07:00
parent 7ce250b82f
commit 3ed0201c6e
5 changed files with 0 additions and 6 deletions

View File

@ -144,10 +144,8 @@
#![allow(deprecated)]
#[macro_use] extern crate log;
extern crate rustc;
extern crate syntax;
extern crate syntax_ext;
extern crate syntax_pos;
extern crate rustc_plugin;
extern crate rocket;

View File

@ -1,4 +1,3 @@
extern crate rocket;
extern crate rocket_contrib;
use std::env;

View File

@ -3,7 +3,6 @@
extern crate rocket_contrib;
extern crate rocket;
extern crate serde_json;
#[macro_use] extern crate serde_derive;
#[cfg(test)] mod tests;

View File

@ -2,7 +2,6 @@
#![plugin(rocket_codegen)]
extern crate rocket;
extern crate serde_json;
#[macro_use] extern crate rocket_contrib;
#[macro_use] extern crate serde_derive;

View File

@ -2,7 +2,6 @@
#![plugin(rocket_codegen)]
extern crate rocket;
extern crate serde_json;
#[macro_use] extern crate diesel;
#[macro_use] extern crate diesel_codegen;
#[macro_use] extern crate serde_derive;