]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Bump to 0.0.38
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.38"
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 semver = "0.2.1"
22 regex-syntax = "0.2.2"
23
24 [dev-dependencies]
25 compiletest_rs = "0.0.11"
26 regex = "0.1.47"
27 regex_macros = "0.1.28"
28 lazy_static = "0.1.15"
29 rustc-serialize = "0.3"
30
31 [features]
32
33 debugging = []