]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #473 from fhartwig/loop-index-false-positive
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.25"
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 = "*"
21
22 [dev-dependencies]
23 compiletest_rs = "*"
24 regex = "*"
25 regex_macros = "*"
26 lazy_static = "*"
27
28 [features]
29
30 structured_logging = []