]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/Cargo.toml
New upstream version 1.25.0+dfsg1
[rustc.git] / src / tools / clippy / Cargo.toml
CommitLineData
ea8adc8c
XL
1[package]
2name = "clippy"
2c00a5a8 3version = "0.0.186"
ea8adc8c
XL
4authors = [
5 "Manish Goregaokar <manishsmail@gmail.com>",
6 "Andre Bogus <bogusandre@gmail.com>",
7 "Georg Brandl <georg@python.org>",
8 "Martin Carton <cartonmartin@gmail.com>",
9 "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
10]
11description = "A bunch of helpful lints to avoid common pitfalls in Rust"
12repository = "https://github.com/rust-lang-nursery/rust-clippy"
13readme = "README.md"
14license = "MPL-2.0"
15keywords = ["clippy", "lint", "plugin"]
16categories = ["development-tools", "development-tools::cargo-plugins"]
abe05a73 17build = "build.rs"
ea8adc8c
XL
18
19[badges]
20travis-ci = { repository = "rust-lang-nursery/rust-clippy" }
21appveyor = { repository = "rust-lang-nursery/rust-clippy" }
22
23[lib]
24name = "clippy"
25plugin = true
26test = false
27
28[[bin]]
29name = "cargo-clippy"
30test = false
31path = "src/main.rs"
32
abe05a73
XL
33[[bin]]
34name = "clippy-driver"
35test = false
36path = "src/driver.rs"
37
ea8adc8c
XL
38[dependencies]
39# begin automatic update
2c00a5a8 40clippy_lints = { version = "0.0.186", path = "clippy_lints" }
ea8adc8c
XL
41# end automatic update
42cargo_metadata = "0.2"
abe05a73 43regex = "0.2"
ea8adc8c
XL
44
45[dev-dependencies]
2c00a5a8 46compiletest_rs = "0.3.6"
ea8adc8c 47duct = "0.8.2"
2c00a5a8 48lazy_static = "1.0"
ea8adc8c 49serde_derive = "1.0"
2c00a5a8 50clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
ea8adc8c
XL
51serde = "1.0"
52
53[features]
54debugging = []