X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=047d966be666a5f84c11948adc34b6fe8b093667;hb=e2b9cf836ac3a0e8fb9f45820271f1b42feb7bbd;hp=b1676b45a8e414b9b44cf35215da6a7b0d26beb3;hpb=b2c88b0a3597ca51333b75cf366511234e25315d;p=rust.git diff --git a/Cargo.toml b/Cargo.toml index b1676b45a8e..047d966be66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.160" +version = "0.0.169" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -14,6 +14,7 @@ readme = "README.md" license = "MPL-2.0" keywords = ["clippy", "lint", "plugin"] categories = ["development-tools", "development-tools::cargo-plugins"] +build = "build.rs" [badges] travis-ci = { repository = "rust-lang-nursery/rust-clippy" } @@ -29,9 +30,14 @@ name = "cargo-clippy" test = false path = "src/main.rs" +[[bin]] +name = "clippy-driver" +test = false +path = "src/driver.rs" + [dependencies] # begin automatic update -clippy_lints = { version = "0.0.160", path = "clippy_lints" } +clippy_lints = { version = "0.0.169", path = "clippy_lints" } # end automatic update cargo_metadata = "0.2" @@ -46,5 +52,3 @@ serde = "1.0" [features] debugging = [] - -[workspace]