1
Fork 0

rename mini-macro to clippy-mini-macro-test

This commit is contained in:
Oliver 'ker' Schneider 2016-06-26 13:26:30 +02:00
parent d57192d5c1
commit 2e86eb88f3
3 changed files with 7 additions and 4 deletions

View file

@ -33,7 +33,7 @@ compiletest_rs = "0.2.0"
lazy_static = "0.1.15" lazy_static = "0.1.15"
regex = "0.1.71" regex = "0.1.71"
rustc-serialize = "0.3" rustc-serialize = "0.3"
mini-macro = { version = "0.1", path = "mini-macro" } clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
[features] [features]

View file

@ -1,5 +1,5 @@
[package] [package]
name = "mini-macro" name = "clippy-mini-macro-test"
version = "0.1.0" version = "0.1.0"
authors = [ authors = [
"Manish Goregaokar <manishsmail@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>",
@ -8,9 +8,12 @@ authors = [
"Martin Carton <cartonmartin@gmail.com>", "Martin Carton <cartonmartin@gmail.com>",
"Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>" "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
] ]
license = "MPL-2.0"
description = "A macro to test clippy's procedural macro checks"
repository = "https://github.com/Manishearth/rust-clippy"
[lib] [lib]
name = "mini_macro" name = "clippy_mini_macro_test"
plugin = true plugin = true
[dependencies] [dependencies]

View file

@ -1,5 +1,5 @@
#![feature(plugin)] #![feature(plugin)]
#![plugin(clippy, mini_macro)] #![plugin(clippy, clippy_mini_macro_test)]
#[deny(warnings)] #[deny(warnings)]
fn main() { fn main() {