]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #2085 from rust-lang-nursery/rustup
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.164"
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
18 [badges]
19 travis-ci = { repository = "rust-lang-nursery/rust-clippy" }
20 appveyor = { repository = "rust-lang-nursery/rust-clippy" }
21
22 [lib]
23 name = "clippy"
24 plugin = true
25 test = false
26
27 [[bin]]
28 name = "cargo-clippy"
29 test = false
30 path = "src/main.rs"
31
32 [dependencies]
33 # begin automatic update
34 clippy_lints = { version = "0.0.164", path = "clippy_lints" }
35 # end automatic update
36 cargo_metadata = "0.2"
37
38 [dev-dependencies]
39 compiletest_rs = "0.2.7"
40 duct = "0.8.2"
41 lazy_static = "0.2"
42 regex = "0.2"
43 serde_derive = "1.0"
44 clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
45 serde = "1.0"
46
47 [features]
48 debugging = []
49
50 [workspace]