diff options
author | Keegan McAllister <kmcallister@mozilla.com> | 2014-09-29 17:59:47 -0700 |
---|---|---|
committer | Keegan McAllister <kmcallister@mozilla.com> | 2014-09-29 18:39:36 -0700 |
commit | 6429750b339ca45651ac3a45df380f1badd3917c (patch) | |
tree | fa7e5a4ff39828238ebecc1028fc6ccd682dfcd7 /components/util/lib.rs | |
parent | 4be0a07585b019d45dd83849818854566c5e118b (diff) | |
download | servo-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/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 89fcec41d93..4de1cff459c 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -29,7 +29,9 @@ extern crate "time" as std_time; extern crate string_cache; extern crate url; -pub mod atom; +#[phase(plugin)] +extern crate string_cache_macros; + pub mod bloom; pub mod cache; pub mod debug_utils; |