]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Remove powi, "square can be computed more efficiently"
[rust.git] / Cargo.toml
index 7f9d22e594b9c0f4af731ae72e91219b85bd819e..f010e6096049170c4a89256f9308da67bdfa8760 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.54"
+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"
@@ -20,6 +14,7 @@ publish = false
 
 [[bin]]
 name = "cargo-clippy"
+test = false
 path = "src/main.rs"
 
 [[bin]]
@@ -28,7 +23,7 @@ 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
 semver = "0.11"
 rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
@@ -36,11 +31,14 @@ tempfile = { version = "3.1.0", optional = true }
 
 [dev-dependencies]
 cargo_metadata = "0.12"
-compiletest_rs = { version = "0.5.0", features = ["tmp"] }
-tester = "0.7"
+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`
@@ -54,3 +52,8 @@ rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
 deny-warnings = []
 integration = ["tempfile"]
 internal-lints = ["clippy_lints/internal-lints"]
+metadata-collector-lint = ["internal-lints", "clippy_lints/metadata-collector-lint"]
+
+[package.metadata.rust-analyzer]
+# This package uses #[feature(rustc_private)]
+rustc_private = true