Skip to content

Commit

Permalink
rename mini-macro to clippy-mini-macro-test
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Jun 26, 2016
1 parent d57192d commit 2e86eb8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
7 changes: 5 additions & 2 deletions mini-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "mini-macro"
name = "clippy-mini-macro-test"
version = "0.1.0"
authors = [
"Manish Goregaokar <[email protected]>",
Expand All @@ -8,9 +8,12 @@ authors = [
"Martin Carton <[email protected]>",
"Oliver Schneider <[email protected]>"
]
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]
2 changes: 1 addition & 1 deletion tests/run-pass/procedural_macro.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![feature(plugin)]
#![plugin(clippy, mini_macro)]
#![plugin(clippy, clippy_mini_macro_test)]

#[deny(warnings)]
fn main() {
Expand Down

0 comments on commit 2e86eb8

Please sign in to comment.