summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerris Tseng <ferris@navapbc.com>2019-12-24 17:52:29 -0500
committerFerris Tseng <ferris@navapbc.com>2019-12-24 17:52:29 -0500
commit5a2fe5094af7ec6e461c07f0b75364d9092cc0b4 (patch)
treebea1d5b66972777a3cb98566f03b4b2b5e81ccce
parent25d6054562187a0d46049cc0bde49f82f0fc27a2 (diff)
redundant use imports
-rw-r--r--ipfs-api/src/response/error.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/ipfs-api/src/response/error.rs b/ipfs-api/src/response/error.rs
index 5287a3d..c98d183 100644
--- a/ipfs-api/src/response/error.rs
+++ b/ipfs-api/src/response/error.rs
@@ -7,15 +7,6 @@
//
use crate::serde::Deserialize;
-
-#[cfg(feature = "actix")]
-use awc;
-use http;
-#[cfg(feature = "hyper")]
-use hyper;
-use serde_json;
-use serde_urlencoded;
-use std;
use std::string::FromUtf8Error;
#[cfg_attr(feature = "actix", derive(Display), display(fmt = "{}", message))]