X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=9790937a30719af3fc952f8a460b0a89cbc88ed0;hb=115592530548c623c205185e1d3b89ce7ce05b18;hp=60862865b43f48d3ee133771379f024a87833625;hpb=17dd0da9da6eebbb83856bd6a76ac767be0217f0;p=rust.git diff --git a/Cargo.toml b/Cargo.toml index 60862865b43..9790937a307 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "clippy" -version = "0.0.76" +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,17 +24,18 @@ name = "cargo-clippy" test = false [dependencies] -regex_macros = { version = "0.1.33", optional = true } # begin automatic update -clippy_lints = { version = "0.0.76", path = "clippy_lints" } +clippy_lints = { version = "0.0.79", path = "clippy_lints" } # end automatic update [dev-dependencies] 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"]