Skip to content

Commit

Permalink
fix(lib): Export hyper::RawStatus if the raw_status feature is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Eijebong committed Sep 15, 2017
1 parent 21de6b6 commit 627c4e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ pub use method::Method::{self, Get, Head, Post, Put, Delete};
pub use status::StatusCode::{self, Ok, BadRequest, NotFound};
pub use server::Server;
pub use version::HttpVersion;
#[cfg(feature = "raw_status")]
pub use http::RawStatus;

#[cfg(test)]
mod mock;
Expand Down

0 comments on commit 627c4e3

Please sign in to comment.