]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Updated lints with script
[rust.git] / Cargo.toml
index 792326d6c1d59d1ecc1ea39fbb606d442d009764..febe1ab9c19bc30ffb863d80d757ce13db2410e6 100644 (file)
@@ -1,10 +1,11 @@
 [package]
 name = "clippy"
-version = "0.0.35"
+version = "0.0.60"
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
        "Andre Bogus <bogusandre@gmail.com>",
-       "Georg Brandl <georg@python.org>"
+       "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"
@@ -17,17 +18,19 @@ name = "clippy"
 plugin = true
 
 [dependencies]
-unicode-normalization = "0.1"
+regex-syntax = "0.3.0"
+regex_macros = { version = "0.1.33", optional = true }
 semver = "0.2.1"
+toml = "0.1"
+unicode-normalization = "0.1"
+quine-mc_cluskey = "0.2.2"
 
 [dev-dependencies]
-compiletest_rs = "0.0.11"
-regex = "*"
-regex_macros = "*"
-lazy_static = "*"
+compiletest_rs = "0.1.0"
+lazy_static = "0.1.15"
+regex = "0.1.56"
 rustc-serialize = "0.3"
 
 [features]
-
-structured_logging = []
 debugging = []
+test-regex_macros = ["regex_macros"]