summaryrefslogtreecommitdiffstats
path: root/src/errors.rs
diff options
context:
space:
mode:
authorThomas Eizinger <thomas@eizinger.io>2019-12-27 04:17:07 +0100
committerDoug Tangren <d.tangren@gmail.com>2019-12-26 22:17:07 -0500
commita368a93e1f217cd38a0fe52456b4ab03008d75d4 (patch)
tree3ca636a28ebf6da3d7f40044e5b3ac85dbc97748 /src/errors.rs
parent1718105d19c53e817de9776011daacb17f6ac275 (diff)
Re-export hyper::Uri as shiplift::Uri (#209)
This patch removes the explicit dependency on the http crate and instead accesses the re-exported version of hyper. This should make the update process slightly easier because those versions would need to be kept in sync manually. We also re-export hyper::Uri as shiplift::Uri because it is part of the public API of shiplift::Docker. This allows users to access the Uri type without having to seperately depend on http or hyper.
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 85e46b8..f0f70d7 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -1,6 +1,5 @@
//! Representations of various client errors
-use http;
use hyper::{self, StatusCode};
use serde_json::Error as SerdeError;
use std::{error::Error as StdError, fmt, io::Error as IoError, string::FromUtf8Error};
@@ -9,7 +8,7 @@ use std::{error::Error as StdError, fmt, io::Error as IoError, string::FromUtf8E
pub enum Error {
SerdeJsonError(SerdeError),
Hyper(hyper::Error),
- Http(http::Error),
+ Http(hyper::http::Error),
IO(IoError),
Encoding(FromUtf8Error),
InvalidResponse(String),
@@ -29,8 +28,8 @@ impl From<hyper::Error> for Error {
}
}
-impl From<http::Error> for Error {
- fn from(error: http::Error) -> Error {
+impl From<hyper::http::Error> for Error {
+ fn from(error: hyper::http::Error) -> Error {
Error::Http(error)
}
}