From b058a5d23506945746dcef7bd01aa44cda51c92d Mon Sep 17 00:00:00 2001 From: Saghm Rossi Date: Mon, 2 Jan 2017 16:12:20 -0500 Subject: [PATCH] export hyper::Error for use in custom types implementing Header --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index c166121..42e1968 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -98,6 +98,7 @@ extern crate serde_urlencoded; extern crate url; pub use hyper::client::IntoUrl; +pub use hyper::Error as HyperError; pub use hyper::header; pub use hyper::method::Method; pub use hyper::status::StatusCode;