mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41 lines
919 B
TOML
41 lines
919 B
TOML
[package]
|
|
name = "clippy"
|
|
version = "0.0.78"
|
|
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>"
|
|
]
|
|
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
|
|
repository = "https://github.com/Manishearth/rust-clippy"
|
|
readme = "README.md"
|
|
license = "MPL-2.0"
|
|
keywords = ["clippy", "lint", "plugin"]
|
|
|
|
[lib]
|
|
name = "clippy"
|
|
plugin = true
|
|
test = false
|
|
|
|
[[bin]]
|
|
name = "cargo-clippy"
|
|
test = false
|
|
|
|
[dependencies]
|
|
# begin automatic update
|
|
clippy_lints = { version = "0.0.78", path = "clippy_lints" }
|
|
# end automatic update
|
|
|
|
[dev-dependencies]
|
|
compiletest_rs = "0.2.0"
|
|
lazy_static = "0.1.15"
|
|
regex = "0.1.71"
|
|
rustc-serialize = "0.3"
|
|
clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
|
|
|
|
|
|
[features]
|
|
debugging = []
|