aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-08-31 16:30:56 -0500
committerGitHub <noreply@github.com>2016-08-31 16:30:56 -0500
commitbbfe38e35f3f6a51009c0411647c89c8b5616357 (patch)
tree476902937c71de85c89dd63a879a7e2609616b83 /components/script/lib.rs
parent23adba02426852184167a1a603293707f3517ddd (diff)
parent95033e1c0d672cc52c85092fcd0f4398ee896f30 (diff)
downloadservo-bbfe38e35f3f6a51009c0411647c89c8b5616357.tar.gz
servo-bbfe38e35f3f6a51009c0411647c89c8b5616357.zip
Auto merge of #13134 - servo:archery, r=emilio
Add lots of Arc’s in style, and prepare for using DOMRefCell <!-- Please describe your changes on the following line: --> `DOMRefCell` usage is not there year because of thread-safety questions, but I have this much already that I’d like to land before it bitrots. r? @emilio --- <!-- 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 - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require new tests because refactor <!-- 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="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13134) <!-- 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 ff3715de24c..910706f4a1a 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -17,7 +17,6 @@
#![feature(slice_patterns)]
#![feature(stmt_expr_attributes)]
#![feature(question_mark)]
-#![feature(try_borrow)]
#![feature(try_from)]
#![deny(unsafe_code)]
@@ -69,7 +68,6 @@ extern crate phf;
extern crate profile_traits;
extern crate rand;
extern crate range;
-extern crate ref_filter_map;
extern crate ref_slice;
extern crate regex;
extern crate rustc_serialize;