X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=9790937a30719af3fc952f8a460b0a89cbc88ed0;hb=115592530548c623c205185e1d3b89ce7ce05b18;hp=dbdc233cc70033c8a15b2fd5a1599a1606fa905c;hpb=69913e65f36fa654f5c496990867b3c290ea671c;p=rust.git diff --git a/Cargo.toml b/Cargo.toml index dbdc233cc70..9790937a307 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "clippy" -version = "0.0.61" +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"]