]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Fix deploy.sh III
[rust.git] / Cargo.toml
index 4cdc1bd9be438392e5baf1aa9071479b88ede5e2..9790937a30719af3fc952f8a460b0a89cbc88ed0 100644 (file)
@@ -1,10 +1,12 @@
 [package]
 name = "clippy"
-version = "0.0.36"
+version = "0.0.79"
 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>",
+       "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"
@@ -15,18 +17,25 @@ keywords = ["clippy", "lint", "plugin"]
 [lib]
 name = "clippy"
 plugin = true
+test = false
+
+[[bin]]
+name = "cargo-clippy"
+test = false
 
 [dependencies]
-unicode-normalization = "0.1"
-semver = "0.2.1"
+# begin automatic update
+clippy_lints = { version = "0.0.79", path = "clippy_lints" }
+# end automatic update
 
 [dev-dependencies]
-compiletest_rs = "0.0.11"
-regex = "*"
-regex_macros = "*"
-lazy_static = "*"
+compiletest_rs = "0.2.0"
+lazy_static = "0.1.15"
+regex = "0.1.71"
 rustc-serialize = "0.3"
+clippy-mini-macro-test = { version = "0.1", path = "mini-macro" }
+serde = "0.7"
 
-[features]
 
+[features]
 debugging = []