]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Fix merge issues.
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.169"
4 authors = [
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 ]
11 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
12 repository = "https://github.com/rust-lang-nursery/rust-clippy"
13 readme = "README.md"
14 license = "MPL-2.0"
15 keywords = ["clippy", "lint", "plugin"]
16 categories = ["development-tools", "development-tools::cargo-plugins"]
17 build = "build.rs"
18
19 [badges]
20 travis-ci = { repository = "rust-lang-nursery/rust-clippy" }
21 appveyor = { repository = "rust-lang-nursery/rust-clippy" }
22
23 [lib]
24 name = "clippy"
25 plugin = true
26 test = false
27
28 [[bin]]
29 name = "cargo-clippy"
30 test = false
31 path = "src/main.rs"
32
33 [[bin]]
34 name = "clippy-driver"
35 test = false
36 path = "src/driver.rs"
37
38 [dependencies]
39 # begin automatic update
40 clippy_lints = { version = "0.0.169", path = "clippy_lints" }
41 # end automatic update
42 cargo_metadata = "0.2"
43
44 [dev-dependencies]
45 compiletest_rs = "0.2.7"
46 duct = "0.8.2"
47 lazy_static = "0.2"
48 regex = "0.2"
49 serde_derive = "1.0"
50 clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
51 serde = "1.0"
52
53 [features]
54 debugging = []