Remove string_cache dependency from util.

Move `namespace::from_domstring` from util to script::dom, because it is used
only in that crate.
This commit is contained in:
Matt Brubeck 2015-07-01 09:55:23 -07:00
parent efa60d3a24
commit 13072c7b0c
11 changed files with 21 additions and 42 deletions

View file

@ -18,8 +18,6 @@
#![feature(step_trait)]
#![feature(zero_one)]
#![plugin(string_cache_plugin)]
#[macro_use] extern crate log;
extern crate azure;
@ -34,7 +32,6 @@ extern crate num_cpus;
extern crate rand;
extern crate rustc_serialize;
extern crate smallvec;
extern crate string_cache;
extern crate url;
use std::sync::Arc;
@ -48,7 +45,6 @@ pub mod linked_list;
pub mod geometry;
pub mod logical_geometry;
pub mod mem;
pub mod namespace;
pub mod opts;
pub mod persistent_list;
pub mod range;