diff --git a/Cargo.toml b/Cargo.toml index 7fd8befe..4729ec2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ log = "0" [dependencies.string_cache] git = "https://github.com/servo/string-cache" -[dependencies.string_cache_macros] +[dependencies.string_cache_plugin] git = "https://github.com/servo/string-cache" [dependencies.html5ever_macros] diff --git a/examples/print-rcdom.rs b/examples/print-rcdom.rs index cb3ff8c0..2a8efc12 100644 --- a/examples/print-rcdom.rs +++ b/examples/print-rcdom.rs @@ -8,7 +8,7 @@ // except according to those terms. #![feature(plugin, io)] -#![plugin(string_cache_macros)] +#![plugin(string_cache_plugin)] extern crate html5ever; diff --git a/src/lib.rs b/src/lib.rs index 55a3df2f..faee352e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,7 @@ #![allow(unused_parens)] #![plugin(phf_macros)] -#![plugin(string_cache_macros)] +#![plugin(string_cache_plugin)] #![plugin(html5ever_macros)] // FIXME(#63): switch back to using std diff --git a/tests/html5ever-external-test.rs b/tests/html5ever-external-test.rs index e622bd57..22ac390e 100644 --- a/tests/html5ever-external-test.rs +++ b/tests/html5ever-external-test.rs @@ -12,7 +12,7 @@ #![feature(plugin)] #![feature(rustc_private, core, env, io, path, std_misc, test)] -#![plugin(string_cache_macros)] +#![plugin(string_cache_plugin)] extern crate test; extern crate serialize;