]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Fix deploy.sh III
[rust.git] / Cargo.toml
index cb9ad5ffedcbc536f69f0bce5db79768b7ce5e6b..9790937a30719af3fc952f8a460b0a89cbc88ed0 100644 (file)
@@ -1,11 +1,12 @@
 [package]
 name = "clippy"
-version = "0.0.51"
+version = "0.0.79"
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
        "Andre Bogus <bogusandre@gmail.com>",
        "Georg Brandl <georg@python.org>",
-       "Martin Carton <cartonmartin@gmail.com>"
+       "Martin Carton <cartonmartin@gmail.com>",
+       "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
 ]
 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
 repository = "https://github.com/Manishearth/rust-clippy"
@@ -16,19 +17,25 @@ keywords = ["clippy", "lint", "plugin"]
 [lib]
 name = "clippy"
 plugin = true
+test = false
+
+[[bin]]
+name = "cargo-clippy"
+test = false
 
 [dependencies]
-regex-syntax = "0.2.2"
-regex_macros = { version = "0.1.28", optional = true }
-semver = "0.2.1"
-unicode-normalization = "0.1"
+# begin automatic update
+clippy_lints = { version = "0.0.79", path = "clippy_lints" }
+# end automatic update
 
 [dev-dependencies]
-compiletest_rs = "0.0.11"
+compiletest_rs = "0.2.0"
 lazy_static = "0.1.15"
-regex = "0.1.47"
+regex = "0.1.71"
 rustc-serialize = "0.3"
+clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
+serde = "0.7"
+
 
 [features]
 debugging = []
-test-regex_macros = ["regex_macros"]