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

@@ -4,6 +4,7 @@ pub use cookie::CookieJar;
pub use self::encoding::Encoding;
pub use self::entity::EntityTag;
pub use self::httpdate::HttpDate;
pub use language_tags::LanguageTag;
pub use self::quality_item::{Quality, QualityItem, qitem, q};
mod charset;