]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #814 from Manishearth/let_mut_if
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.70"
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 ]
10 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
11 repository = "https://github.com/Manishearth/rust-clippy"
12 readme = "README.md"
13 license = "MPL-2.0"
14 keywords = ["clippy", "lint", "plugin"]
15
16 [lib]
17 name = "clippy"
18 plugin = true
19 test = false
20
21 [[bin]]
22 name = "cargo-clippy"
23 test = false
24
25 [dependencies]
26 regex-syntax = "0.3.0"
27 regex_macros = { version = "0.1.33", optional = true }
28 semver = "0.2.1"
29 toml = "0.1"
30 unicode-normalization = "0.1"
31 quine-mc_cluskey = "0.2.2"
32 # begin automatic update
33 clippy_lints = { version = "0.0.70", path = "clippy_lints" }
34 # end automatic update
35
36 [dev-dependencies]
37 compiletest_rs = "0.1.0"
38 lazy_static = "0.1.15"
39 regex = "0.1.56"
40 rustc-serialize = "0.3"
41
42 [features]
43 debugging = []
44 test-regex_macros = ["regex_macros"]