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