diff options
author | Bastien Orivel <eijebong@bananium.fr> | 2018-08-27 18:36:52 +0200 |
---|---|---|
committer | Bastien Orivel <eijebong@bananium.fr> | 2018-11-01 19:17:36 +0100 |
commit | 024b40b39d3848f1a1f7020bd7ed8c901817f09c (patch) | |
tree | 27508f102b0973cbae3dca22143ea4aedd349f4b /components/net/lib.rs | |
parent | 95bfaa0a770479fb3bf6bf0b1f85c9ae343e66ff (diff) | |
download | servo-024b40b39d3848f1a1f7020bd7ed8c901817f09c.tar.gz servo-024b40b39d3848f1a1f7020bd7ed8c901817f09c.zip |
Update hyper to 0.12
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index 285a755a9e9..cebeb447aef 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -6,10 +6,14 @@ extern crate base64; extern crate brotli; +extern crate bytes; extern crate cookie as cookie_rs; extern crate devtools_traits; extern crate embedder_traits; extern crate flate2; +extern crate headers_core; +extern crate headers_ext; +extern crate http; extern crate hyper; extern crate hyper_openssl; extern crate hyper_serde; @@ -21,7 +25,6 @@ extern crate lazy_static; extern crate malloc_size_of; #[macro_use] extern crate malloc_size_of_derive; #[macro_use] #[no_link] extern crate matches; -#[macro_use] extern crate mime; extern crate mime_guess; extern crate msg; @@ -38,7 +41,7 @@ extern crate servo_channel; extern crate servo_config; extern crate servo_url; extern crate time; -extern crate unicase; +extern crate tokio; extern crate url; extern crate uuid; extern crate webrender_api; |