aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/fetch/cors_cache.rs
diff options
context:
space:
mode:
authorSean McArthur <sean.monstar@gmail.com>2014-11-14 11:57:32 -0800
committerManish Goregaokar <manishsmail@gmail.com>2014-12-04 10:06:39 -0800
commit12727d4dd0a93c7ab8139c8ae6893a1ec3b5edaf (patch)
tree31cbc8e8cfbbf7e95b6c9878f9589eaf63add8d1 /components/net/fetch/cors_cache.rs
parent92a8c7a80ccd5721884da96dbd28c6c40ba32b70 (diff)
downloadservo-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.rs2
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;