From e3ba66d0aaec94e00fe52ab7f78b809b9c53c043 Mon Sep 17 00:00:00 2001 From: Eunchong Yu Date: Sun, 15 Feb 2015 20:26:17 +0900 Subject: [PATCH] 'string-cache-macros' was renamed to 'string-cache-plugin' --- Cargo.toml | 2 +- examples/print-rcdom.rs | 2 +- src/lib.rs | 2 +- tests/html5ever-external-test.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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;