aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/lib.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2014-09-29 17:59:47 -0700
committerKeegan McAllister <kmcallister@mozilla.com>2014-09-29 18:39:36 -0700
commit6429750b339ca45651ac3a45df380f1badd3917c (patch)
treefa7e5a4ff39828238ebecc1028fc6ccd682dfcd7 /components/layout/lib.rs
parent4be0a07585b019d45dd83849818854566c5e118b (diff)
downloadservo-6429750b339ca45651ac3a45df380f1badd3917c.tar.gz
servo-6429750b339ca45651ac3a45df380f1badd3917c.zip
Eliminate servo_util::atom
We only needed this for Encodable, and now we use JSTraceable instead.
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r--components/layout/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs
index 5ef17f65359..c15b2658ab4 100644
--- a/components/layout/lib.rs
+++ b/components/layout/lib.rs
@@ -28,6 +28,9 @@ extern crate "net" as servo_net;
extern crate "msg" as servo_msg;
#[phase(plugin, link)]
extern crate "util" as servo_util;
+extern crate string_cache;
+#[phase(plugin)]
+extern crate string_cache_macros;
extern crate collections;
extern crate encoding;