]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Fix deploy.sh III
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.79"
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
17 [lib]
18 name = "clippy"
19 plugin = true
20 test = false
21
22 [[bin]]
23 name = "cargo-clippy"
24 test = false
25
26 [dependencies]
27 # begin automatic update
28 clippy_lints = { version = "0.0.79", path = "clippy_lints" }
29 # end automatic update
30
31 [dev-dependencies]
32 compiletest_rs = "0.2.0"
33 lazy_static = "0.1.15"
34 regex = "0.1.71"
35 rustc-serialize = "0.3"
36 clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
37 serde = "0.7"
38
39
40 [features]
41 debugging = []