2014-11-19 13:23:40 +05:30
|
|
|
[package]
|
2014-12-26 05:30:03 +05:30
|
|
|
name = "clippy"
|
2021-09-08 16:31:47 +02:00
|
|
|
version = "0.1.57"
|
2015-05-09 15:22:22 +05:30
|
|
|
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
|
2018-11-22 04:40:09 +01:00
|
|
|
repository = "https://github.com/rust-lang/rust-clippy"
|
2015-05-09 15:22:22 +05:30
|
|
|
readme = "README.md"
|
2019-10-04 17:39:23 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2015-05-09 15:22:22 +05:30
|
|
|
keywords = ["clippy", "lint", "plugin"]
|
2017-01-20 19:35:40 +01:00
|
|
|
categories = ["development-tools", "development-tools::cargo-plugins"]
|
2017-09-18 12:47:33 +02:00
|
|
|
build = "build.rs"
|
2018-05-30 10:18:52 +02:00
|
|
|
edition = "2018"
|
2018-10-02 09:58:02 +02:00
|
|
|
publish = false
|
2014-12-25 04:43:56 +05:30
|
|
|
|
2016-02-17 18:16:29 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "cargo-clippy"
|
2020-12-23 10:52:53 +01:00
|
|
|
test = false
|
2017-07-16 19:46:06 +02:00
|
|
|
path = "src/main.rs"
|
2014-12-25 04:43:56 +05:30
|
|
|
|
2017-09-18 12:47:33 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "clippy-driver"
|
|
|
|
path = "src/driver.rs"
|
|
|
|
|
2015-09-04 09:08:07 +02:00
|
|
|
[dependencies]
|
2016-05-27 15:57:44 +02:00
|
|
|
# begin automatic update
|
2021-01-02 16:29:43 +01:00
|
|
|
clippy_lints = { version = "0.1.50", path = "clippy_lints" }
|
2016-05-27 15:57:44 +02:00
|
|
|
# end automatic update
|
2020-10-23 22:16:59 +02:00
|
|
|
semver = "0.11"
|
2020-12-06 15:01:03 +01:00
|
|
|
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
|
2019-11-23 16:21:16 +01:00
|
|
|
tempfile = { version = "3.1.0", optional = true }
|
2015-09-04 09:08:07 +02:00
|
|
|
|
2015-05-09 15:19:12 +05:30
|
|
|
[dev-dependencies]
|
2020-10-23 22:16:59 +02:00
|
|
|
cargo_metadata = "0.12"
|
2021-02-25 11:25:22 +01:00
|
|
|
compiletest_rs = { version = "0.6.0", features = ["tmp"] }
|
|
|
|
tester = "0.9"
|
2021-03-12 15:30:50 +01:00
|
|
|
regex = "1.4"
|
2021-06-03 08:41:37 +02:00
|
|
|
# This is used by the `collect-metadata` alias.
|
|
|
|
filetime = "0.2"
|
2016-06-25 18:12:29 +02:00
|
|
|
|
2018-08-01 21:33:33 -07:00
|
|
|
# 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`
|
|
|
|
# for more information.
|
|
|
|
rustc-workspace-hack = "1.0.0"
|
|
|
|
|
2021-09-08 16:31:47 +02:00
|
|
|
# UI test dependencies
|
|
|
|
clippy_utils = { path = "clippy_utils" }
|
|
|
|
derive-new = "0.5"
|
|
|
|
if_chain = "1.0"
|
|
|
|
itertools = "0.10.1"
|
|
|
|
quote = "1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
syn = { version = "1", features = ["full"] }
|
|
|
|
|
2018-09-06 08:19:47 +02:00
|
|
|
[build-dependencies]
|
2020-12-06 15:01:03 +01:00
|
|
|
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
|
2018-09-06 08:19:47 +02:00
|
|
|
|
2015-07-26 20:23:11 +05:30
|
|
|
[features]
|
2021-05-20 12:30:31 +02:00
|
|
|
deny-warnings = ["clippy_lints/deny-warnings"]
|
2020-03-13 18:22:51 -07:00
|
|
|
integration = ["tempfile"]
|
2020-12-06 15:01:03 +01:00
|
|
|
internal-lints = ["clippy_lints/internal-lints"]
|
2021-05-06 11:51:22 +02:00
|
|
|
metadata-collector-lint = ["internal-lints", "clippy_lints/metadata-collector-lint"]
|
2021-03-12 15:30:50 +01:00
|
|
|
|
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
# This package uses #[feature(rustc_private)]
|
|
|
|
rustc_private = true
|