]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
give credit where credit is due
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.11"
4 authors = [
5         "Manish Goregaokar <manishsmail@gmail.com>",
6         "Andre Bogus <bogusandre@gmail.com>",
7         "Georg Brandl <georg@python.org>"
8 ]
9 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
10 repository = "https://github.com/Manishearth/rust-clippy"
11 readme = "README.md"
12 license = "MPL-2.0"
13 keywords = ["clippy", "lint", "plugin"]
14
15 [lib]
16 name = "clippy"
17 plugin = true
18
19 [dev-dependencies]
20 compiletest_rs = "*"
21 regex = "*"
22 regex_macros = "*"
23 lazy_static = "*"
24
25 [features]
26
27 structured_logging = []