rust-clippy/Cargo.toml
mcarton 34d57c5247 Bump to 0.0.51
It fixes a false positive in mustache.
2016-03-13 01:30:20 +01:00

34 lines
787 B
TOML

[package]
name = "clippy"
version = "0.0.51"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
"Georg Brandl <georg@python.org>",
"Martin Carton <cartonmartin@gmail.com>"
]
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/Manishearth/rust-clippy"
readme = "README.md"
license = "MPL-2.0"
keywords = ["clippy", "lint", "plugin"]
[lib]
name = "clippy"
plugin = true
[dependencies]
regex-syntax = "0.2.2"
regex_macros = { version = "0.1.28", optional = true }
semver = "0.2.1"
unicode-normalization = "0.1"
[dev-dependencies]
compiletest_rs = "0.0.11"
lazy_static = "0.1.15"
regex = "0.1.47"
rustc-serialize = "0.3"
[features]
debugging = []
test-regex_macros = ["regex_macros"]