]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Get rid of some unused dependecies
[rust.git] / Cargo.toml
index 8421670a1a465dce0d955d9561180b32efeb1b7e..dcc3294f8a7d8b88fbd2c0ad0cca8b7fa5a939ed 100644 (file)
@@ -1,13 +1,7 @@
 [package]
 name = "clippy"
-version = "0.0.212"
-authors = [
-       "Manish Goregaokar <manishsmail@gmail.com>",
-       "Andre Bogus <bogusandre@gmail.com>",
-       "Georg Brandl <georg@python.org>",
-       "Martin Carton <cartonmartin@gmail.com>",
-       "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
-]
+version = "0.1.52"
+authors = ["The Rust Clippy Developers"]
 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
 repository = "https://github.com/rust-lang/rust-clippy"
 readme = "README.md"
@@ -18,9 +12,6 @@ build = "build.rs"
 edition = "2018"
 publish = false
 
-# [badges]
-# FIXME(flip1995): Add GHA badge once rust-lang/crates.io#1838 is merged
-
 [[bin]]
 name = "cargo-clippy"
 test = false
@@ -32,22 +23,22 @@ path = "src/driver.rs"
 
 [dependencies]
 # begin automatic update
-clippy_lints = { version = "0.0.212", path = "clippy_lints" }
+clippy_lints = { version = "0.1.50", path = "clippy_lints" }
 # end automatic update
-regex = "1"
-semver = "0.9"
-rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
+semver = "0.11"
+rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
 tempfile = { version = "3.1.0", optional = true }
-lazy_static = "1.0"
 
 [dev-dependencies]
-cargo_metadata = "0.9.0"
-compiletest_rs = { version = "0.4.0", features = ["tmp"] }
-tester = "0.7"
-lazy_static = "1.0"
+cargo_metadata = "0.12"
+compiletest_rs = { version = "0.6.0", features = ["tmp"] }
+tester = "0.9"
 clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
 serde = { version = "1.0", features = ["derive"] }
 derive-new = "0.5"
+regex = "1.4"
+quote = "1"
+syn = { version = "1", features = ["full"] }
 
 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
@@ -55,8 +46,13 @@ derive-new = "0.5"
 rustc-workspace-hack = "1.0.0"
 
 [build-dependencies]
-rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
+rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
 
 [features]
 deny-warnings = []
 integration = ["tempfile"]
+internal-lints = ["clippy_lints/internal-lints"]
+
+[package.metadata.rust-analyzer]
+# This package uses #[feature(rustc_private)]
+rustc_private = true