diff --git a/Cargo.toml b/Cargo.toml index 9b68a7364ff..5dc1363f3f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ compiletest_rs = "0.2.0" lazy_static = "0.1.15" regex = "0.1.71" rustc-serialize = "0.3" -mini-macro = { version = "0.1", path = "mini-macro" } +clippy-mini-macro-test = { version = "0.1", path = "mini-macro" } [features] diff --git a/mini-macro/Cargo.toml b/mini-macro/Cargo.toml index 171e5dd8172..f884ab48059 100644 --- a/mini-macro/Cargo.toml +++ b/mini-macro/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "mini-macro" +name = "clippy-mini-macro-test" version = "0.1.0" authors = [ "Manish Goregaokar ", @@ -8,9 +8,12 @@ authors = [ "Martin Carton ", "Oliver Schneider " ] +license = "MPL-2.0" +description = "A macro to test clippy's procedural macro checks" +repository = "https://github.com/Manishearth/rust-clippy" [lib] -name = "mini_macro" +name = "clippy_mini_macro_test" plugin = true [dependencies] diff --git a/tests/run-pass/procedural_macro.rs b/tests/run-pass/procedural_macro.rs index 68d86a4d394..91269726172 100644 --- a/tests/run-pass/procedural_macro.rs +++ b/tests/run-pass/procedural_macro.rs @@ -1,5 +1,5 @@ #![feature(plugin)] -#![plugin(clippy, mini_macro)] +#![plugin(clippy, clippy_mini_macro_test)] #[deny(warnings)] fn main() {