diff options
author | Sean McArthur <sean.monstar@gmail.com> | 2014-11-14 11:57:32 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-04 10:06:39 -0800 |
commit | 12727d4dd0a93c7ab8139c8ae6893a1ec3b5edaf (patch) | |
tree | 31cbc8e8cfbbf7e95b6c9878f9589eaf63add8d1 /components/net/fetch/cors_cache.rs | |
parent | 92a8c7a80ccd5721884da96dbd28c6c40ba32b70 (diff) | |
download | servo-12727d4dd0a93c7ab8139c8ae6893a1ec3b5edaf.tar.gz servo-12727d4dd0a93c7ab8139c8ae6893a1ec3b5edaf.zip |
convert net crate to use hyper
Diffstat (limited to 'components/net/fetch/cors_cache.rs')
-rw-r--r-- | components/net/fetch/cors_cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/fetch/cors_cache.rs b/components/net/fetch/cors_cache.rs index f7b63b3b339..b287e7999fe 100644 --- a/components/net/fetch/cors_cache.rs +++ b/components/net/fetch/cors_cache.rs @@ -9,7 +9,7 @@ //! This library will eventually become the core of the Fetch crate //! with CORSRequest being expanded into FetchRequest (etc) -use http::method::Method; +use hyper::method::Method; use std::ascii::AsciiExt; use std::comm::{Sender, Receiver, channel}; use time; |