From ad9c580e9a24979e2a1485d96d3282c5239d32f9 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 14 Jun 2016 11:24:28 -0700 Subject: [PATCH] fix(lib): make ControlError public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9dc940a1d2..84dfe3527a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,7 +49,7 @@ extern crate test; pub use url::Url; pub use client::Client; pub use error::{Result, Error}; -pub use http::{Next, Encoder, Decoder, Control}; +pub use http::{Next, Encoder, Decoder, Control, ControlError}; pub use header::Headers; pub use method::Method::{self, Get, Head, Post, Delete}; pub use status::StatusCode::{self, Ok, BadRequest, NotFound};