X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=9790937a30719af3fc952f8a460b0a89cbc88ed0;hb=115592530548c623c205185e1d3b89ce7ce05b18;hp=81ef9a08bf76956d766ca1acd2528c183e1241c7;hpb=1aab0e6729c82c100efc9b63e8791e26e68187f0;p=rust.git diff --git a/Cargo.toml b/Cargo.toml index 81ef9a08bf7..9790937a307 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "clippy" -version = "0.0.74" +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" @@ -23,22 +24,18 @@ 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.74", path = "clippy_lints" } +clippy_lints = { version = "0.0.79", path = "clippy_lints" } # end automatic update -rustc-serialize = "0.3" [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"]