Remove unused imports

This commit is contained in:
Tim Kuehn
2017-09-17 15:36:06 -07:00
parent 2e214c85d3
commit 4aaaea1e04
5 changed files with 0 additions and 9 deletions

View File

@@ -6,12 +6,10 @@
#![feature(plugin, use_extern_macros)]
#![plugin(tarpc_plugins)]
extern crate futures;
#[macro_use]
extern crate tarpc;
#[macro_use]
extern crate serde_derive;
extern crate tokio_core;
use std::error::Error;
use std::fmt;

View File

@@ -7,10 +7,8 @@
#![feature(plugin, use_extern_macros)]
#![plugin(tarpc_plugins)]
extern crate futures;
#[macro_use]
extern crate tarpc;
extern crate tokio_core;
use std::sync::mpsc;
use std::thread;

View File

@@ -9,8 +9,6 @@
extern crate env_logger;
#[macro_use]
extern crate tarpc;
extern crate futures;
extern crate tokio_core;
use add::{SyncService as AddSyncService, SyncServiceExt as AddExt};
use double::{SyncService as DoubleSyncService, SyncServiceExt as DoubleExt};

View File

@@ -11,7 +11,6 @@ extern crate lazy_static;
#[macro_use]
extern crate tarpc;
extern crate env_logger;
extern crate futures;
extern crate serde_bytes;
extern crate tokio_core;

View File

@@ -10,9 +10,7 @@
extern crate log;
#[macro_use]
extern crate tarpc;
extern crate bincode;
extern crate env_logger;
extern crate futures;
extern crate tokio_core;
use bar::FutureServiceExt as BarExt;