]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
add myself to Cargo.toml authors
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.77"
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 regex_macros = { version = "0.1.33", optional = true }
28 # begin automatic update
29 clippy_lints = { version = "0.0.77", path = "clippy_lints" }
30 # end automatic update
31
32 [dev-dependencies]
33 compiletest_rs = "0.2.0"
34 lazy_static = "0.1.15"
35 regex = "0.1.56"
36 rustc-serialize = "0.3"
37
38 [features]
39 debugging = []
40 test-regex_macros = ["regex_macros"]