]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Bump the version
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.131"
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/Manishearth/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 = "Manishearth/rust-clippy" }
20 appveyor = { repository = "Manishearth/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
31 [dependencies]
32 # begin automatic update
33 clippy_lints = { version = "0.0.131", path = "clippy_lints" }
34 # end automatic update
35 cargo_metadata = "0.1.1"
36
37 [dev-dependencies]
38 compiletest_rs = "0.2.5"
39 lazy_static = "0.1.15"
40 regex = "0.2"
41 serde_derive = "0.9.1"
42 clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
43 serde = "0.9.1"
44
45 [features]
46 debugging = []