mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
775372db90
We can add a bang-style proc macro again once it stabilizes (we can use the proc macro hack, but it's unnecessary for now)
19 lines
521 B
TOML
19 lines
521 B
TOML
[package]
|
|
name = "clippy-mini-macro-test"
|
|
version = "0.2.0"
|
|
authors = [
|
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
|
"Andre Bogus <bogusandre@gmail.com>",
|
|
"Georg Brandl <georg@python.org>",
|
|
"Martin Carton <cartonmartin@gmail.com>",
|
|
"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/rust-lang-nursery/rust-clippy"
|
|
|
|
[lib]
|
|
name = "clippy_mini_macro_test"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|