rename mini-macro to clippy-mini-macro-test
This commit is contained in:
parent
d57192d5c1
commit
2e86eb88f3
3 changed files with 7 additions and 4 deletions
|
@ -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]
|
||||||
|
|
|
@ -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]
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue