]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Rust upgrade to rustc 1.9.0-nightly (74b886ab1 2016-03-13), update compiletest
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.52"
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
20 [dependencies]
21 regex-syntax = "0.3.0"
22 regex_macros = { version = "0.1.28", optional = true }
23 semver = "0.2.1"
24 toml = "0.1"
25 unicode-normalization = "0.1"
26
27 [dev-dependencies]
28 compiletest_rs = "0.1.0"
29 lazy_static = "0.1.15"
30 regex = "0.1.56"
31 rustc-serialize = "0.3"
32
33 [features]
34 debugging = []
35 test-regex_macros = ["regex_macros"]