]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Rustup to syntax::errors changes
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.34"
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 [dependencies]
20 unicode-normalization = "0.1"
21
22 [dev-dependencies]
23 compiletest_rs = "0.0.11"
24 regex = "*"
25 regex_macros = "*"
26 lazy_static = "*"
27 rustc-serialize = "0.3"
28
29 [features]
30
31 structured_logging = []
32 debugging = []