aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-06-11 19:30:28 -0500
committerGitHub <noreply@github.com>2016-06-11 19:30:28 -0500
commit0c11e8340b26aa86faf9ea40aae253392b338ba3 (patch)
treec64418a8dc4cc53dcec1766076fa5cf31782fcb3 /components/script/lib.rs
parent3fa0dca3a32552a83ae020c57535346d9cdf3bdd (diff)
parent9deecd793c6859e52c2ce9df7bba28eb3159cb97 (diff)
downloadservo-0c11e8340b26aa86faf9ea40aae253392b338ba3.tar.gz
servo-0c11e8340b26aa86faf9ea40aae253392b338ba3.zip
Auto merge of #11556 - Manishearth:make-fetch-happen, r=jdm
Make fetch happen <!-- Please describe your changes on the following line: --> Moves XHR over to the fetch backend. Previous PR: https://github.com/servo/servo/pull/114 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors (Will fix later) <!-- Either: --> - [x] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11556) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 71e53141d9a..2f76a112c0a 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -79,7 +79,6 @@ extern crate style;
extern crate time;
#[cfg(any(target_os = "macos", target_os = "linux"))]
extern crate tinyfiledialogs;
-extern crate unicase;
extern crate url;
#[macro_use]
extern crate util;
@@ -91,7 +90,6 @@ extern crate xml5ever;
mod blob_url_store;
pub mod bluetooth_blacklist;
pub mod clipboard_provider;
-pub mod cors;
mod devtools;
pub mod document_loader;
#[macro_use]