X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=9790937a30719af3fc952f8a460b0a89cbc88ed0;hb=115592530548c623c205185e1d3b89ce7ce05b18;hp=97a3b4b84cc55bbea7e0af6bfa2fa99a0b0d836a;hpb=76a831c60ff989446016ad0cfc519471661811f1;p=rust.git diff --git a/Cargo.toml b/Cargo.toml index 97a3b4b84cc..9790937a307 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "clippy" -version = "0.0.62" +version = "0.0.79" authors = [ "Manish Goregaokar ", "Andre Bogus ", "Georg Brandl ", - "Martin Carton " + "Martin Carton ", + "Oliver Schneider " ] description = "A bunch of helpful lints to avoid common pitfalls in Rust" repository = "https://github.com/Manishearth/rust-clippy" @@ -16,21 +17,25 @@ keywords = ["clippy", "lint", "plugin"] [lib] name = "clippy" plugin = true +test = false + +[[bin]] +name = "cargo-clippy" +test = false [dependencies] -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" +# begin automatic update +clippy_lints = { version = "0.0.79", path = "clippy_lints" } +# end automatic update [dev-dependencies] -compiletest_rs = "0.1.0" +compiletest_rs = "0.2.0" lazy_static = "0.1.15" -regex = "0.1.56" +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"]