2014-11-19 15:53:40 +08:00
|
|
|
[package]
|
2014-12-26 08:00:03 +08:00
|
|
|
name = "clippy"
|
2022-08-12 01:42:16 +08:00
|
|
|
version = "0.1.65"
|
2015-05-09 17:52:22 +08:00
|
|
|
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
|
2018-11-22 11:40:09 +08:00
|
|
|
repository = "https://github.com/rust-lang/rust-clippy"
|
2015-05-09 17:52:22 +08:00
|
|
|
readme = "README.md"
|
2019-10-04 23:39:23 +08:00
|
|
|
license = "MIT OR Apache-2.0"
|
2015-05-09 17:52:22 +08:00
|
|
|
keywords = ["clippy", "lint", "plugin"]
|
2017-01-21 02:35:40 +08:00
|
|
|
categories = ["development-tools", "development-tools::cargo-plugins"]
|
2017-09-18 18:47:33 +08:00
|
|
|
build = "build.rs"
|
2021-09-29 01:03:12 +08:00
|
|
|
edition = "2021"
|
2018-10-02 15:58:02 +08:00
|
|
|
publish = false
|
2014-12-25 07:13:56 +08:00
|
|
|
|
2016-02-18 01:16:29 +08:00
|
|
|
[[bin]]
|
|
|
|
name = "cargo-clippy"
|
2020-12-23 17:52:53 +08:00
|
|
|
test = false
|
2017-07-17 01:46:06 +08:00
|
|
|
path = "src/main.rs"
|
2014-12-25 07:13:56 +08:00
|
|
|
|
2017-09-18 18:47:33 +08:00
|
|
|
[[bin]]
|
|
|
|
name = "clippy-driver"
|
|
|
|
path = "src/driver.rs"
|
|
|
|
|
2015-09-04 15:08:07 +08:00
|
|
|
[dependencies]
|
2022-04-08 01:39:59 +08:00
|
|
|
clippy_lints = { path = "clippy_lints" }
|
2021-11-02 21:19:31 +08:00
|
|
|
semver = "1.0"
|
2022-04-08 01:39:59 +08:00
|
|
|
rustc_tools_util = { path = "rustc_tools_util" }
|
2021-09-09 17:19:03 +08:00
|
|
|
tempfile = { version = "3.2", optional = true }
|
2022-05-21 19:24:00 +08:00
|
|
|
termize = "0.1"
|
2015-09-04 15:08:07 +08:00
|
|
|
|
2015-05-09 17:49:12 +08:00
|
|
|
[dev-dependencies]
|
2022-06-04 19:34:07 +08:00
|
|
|
compiletest_rs = { version = "0.8", features = ["tmp"] }
|
2021-02-25 18:25:22 +08:00
|
|
|
tester = "0.9"
|
2021-09-09 17:19:03 +08:00
|
|
|
regex = "1.5"
|
2022-06-30 16:50:09 +08:00
|
|
|
toml = "0.5"
|
2022-07-29 01:08:22 +08:00
|
|
|
walkdir = "2.3"
|
2021-06-03 14:41:37 +08:00
|
|
|
# This is used by the `collect-metadata` alias.
|
|
|
|
filetime = "0.2"
|
2016-06-26 00:12:29 +08:00
|
|
|
|
2018-08-02 12:33:33 +08: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.
|
2021-09-09 17:19:03 +08:00
|
|
|
rustc-workspace-hack = "1.0"
|
2018-08-02 12:33:33 +08:00
|
|
|
|
2021-09-08 22:31:47 +08:00
|
|
|
# UI test dependencies
|
|
|
|
clippy_utils = { path = "clippy_utils" }
|
|
|
|
derive-new = "0.5"
|
|
|
|
if_chain = "1.0"
|
2022-03-05 01:54:28 +08:00
|
|
|
itertools = "0.10.1"
|
2021-09-09 17:19:03 +08:00
|
|
|
quote = "1.0"
|
2022-04-08 01:39:59 +08:00
|
|
|
serde = { version = "1.0.125", features = ["derive"] }
|
2021-09-09 17:19:03 +08:00
|
|
|
syn = { version = "1.0", features = ["full"] }
|
2022-01-13 20:18:19 +08:00
|
|
|
futures = "0.3"
|
2022-06-04 19:34:07 +08:00
|
|
|
parking_lot = "0.12"
|
2022-01-13 20:18:19 +08:00
|
|
|
tokio = { version = "1", features = ["io-util"] }
|
2022-03-14 19:02:53 +08:00
|
|
|
rustc-semver = "1.1"
|
2021-09-08 22:31:47 +08:00
|
|
|
|
2018-09-06 14:19:47 +08:00
|
|
|
[build-dependencies]
|
2021-09-09 17:19:03 +08:00
|
|
|
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
|
2018-09-06 14:19:47 +08:00
|
|
|
|
2015-07-26 22:53:11 +08:00
|
|
|
[features]
|
2021-05-20 18:30:31 +08:00
|
|
|
deny-warnings = ["clippy_lints/deny-warnings"]
|
2020-03-14 09:22:51 +08:00
|
|
|
integration = ["tempfile"]
|
2022-06-16 23:39:06 +08:00
|
|
|
internal = ["clippy_lints/internal", "tempfile"]
|
2021-03-12 22:30:50 +08:00
|
|
|
|
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
# This package uses #[feature(rustc_private)]
|
|
|
|
rustc_private = true
|