refactor(lib): moved LanguageTag export to header

BREAKING CHANGE: LanguageTag used to be at the crate root, but it is now
  in the `hyper::header` module.
This commit is contained in:
Sean McArthur
2016-07-14 09:59:47 -07:00
parent 6d54a4dfdc
commit 40745c5671
5 changed files with 7 additions and 6 deletions

View File

@@ -15,7 +15,9 @@ pub use self::request::Request;
pub use self::response::Response;
use http::{self, Next};
use net::{Accept, HttpListener, HttpsListener, SslServer, Transport};
pub use net::{Accept, HttpListener, HttpsListener};
use net::{SslServer, Transport};
mod request;