Remove unused imports (#965)
This commit is contained in:
committed by
Ignotus Peverell
parent
b28de95da4
commit
cc9ffcc1ab
+3
-5
@@ -18,20 +18,18 @@
|
||||
//! To use it, just have your service(s) implement the ApiEndpoint trait and
|
||||
//! register them on a ApiServer.
|
||||
|
||||
use std::fmt::{self, Display, Formatter};
|
||||
use std::fmt::{self, Display};
|
||||
use std::mem;
|
||||
use std::net::ToSocketAddrs;
|
||||
use std::string::ToString;
|
||||
|
||||
use failure::{Backtrace, Context, Fail, ResultExt};
|
||||
use failure::{Backtrace, Context, Fail};
|
||||
use iron::middleware::Handler;
|
||||
use iron::prelude::*;
|
||||
use iron::{status, Listening};
|
||||
use iron::Listening;
|
||||
use mount::Mount;
|
||||
use router::Router;
|
||||
|
||||
use store;
|
||||
|
||||
/// Errors that can be returned by an ApiEndpoint implementation.
|
||||
|
||||
#[derive(Debug)]
|
||||
|
||||
@@ -18,7 +18,6 @@ use iron::prelude::*;
|
||||
use iron::status;
|
||||
use serde_json;
|
||||
|
||||
use api;
|
||||
use core::ser;
|
||||
use failure::{Fail, ResultExt};
|
||||
use keychain::Keychain;
|
||||
|
||||
Reference in New Issue
Block a user