aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-04-22 13:40:38 -0700
committerbors-servo <lbergstrom+bors@mozilla.com>2016-04-22 13:40:38 -0700
commit0a3a50a1293e4e8f3e04161014d03802765140c7 (patch)
treee3dcd5a5de56216bc128932ee5d8c7097a78c4ba /components/script/lib.rs
parentc372dee6ca68f261a65d5332cfb02fb9e44b90b2 (diff)
parent4bdc895d9555770bef94afcd7f4d4abb976f3442 (diff)
downloadservo-0a3a50a1293e4e8f3e04161014d03802765140c7.tar.gz
servo-0a3a50a1293e4e8f3e04161014d03802765140c7.zip
Auto merge of #10706 - zwn:unused-extern-crates, r=nox
Turn on unused-extern-crates warning. As discussed in #9256. It should solve second half of the issue. <!-- 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/10706) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 2827238dcef..0748ae954a6 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -30,6 +30,7 @@
extern crate angle;
extern crate app_units;
+#[allow(unused_extern_crates)]
#[macro_use]
extern crate bitflags;
extern crate canvas;