2014-11-19 01:53:40 -06:00
|
|
|
[package]
|
2014-12-25 18:00:03 -06:00
|
|
|
name = "clippy"
|
2024-06-13 05:30:48 -05:00
|
|
|
version = "0.1.81"
|
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]
|
2023-11-02 11:35:56 -05:00
|
|
|
clippy_config = { path = "clippy_config" }
|
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"
|
2024-03-21 16:20:40 -05:00
|
|
|
tempfile = { version = "3.3", optional = true }
|
2022-05-21 06:24:00 -05:00
|
|
|
termize = "0.1"
|
2023-11-02 11:35:56 -05:00
|
|
|
color-print = "0.3.4"
|
2024-02-27 08:25:18 -06:00
|
|
|
anstream = "0.6.0"
|
2015-09-04 02:08:07 -05:00
|
|
|
|
2015-05-09 04:49:12 -05:00
|
|
|
[dev-dependencies]
|
2024-05-02 10:26:44 -05:00
|
|
|
ui_test = "0.23"
|
2024-03-21 16:20:40 -05:00
|
|
|
regex = "1.5.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.
|
2024-03-21 16:20:40 -05:00
|
|
|
filetime = "0.2.9"
|
2024-02-27 08:25:18 -06:00
|
|
|
itertools = "0.12"
|
2021-09-08 09:31:47 -05:00
|
|
|
|
2023-07-17 03:19:29 -05:00
|
|
|
# UI test dependencies
|
|
|
|
clippy_utils = { path = "clippy_utils" }
|
|
|
|
if_chain = "1.0"
|
2024-03-21 16:20:40 -05:00
|
|
|
quote = "1.0.25"
|
|
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
2023-07-17 03:19:29 -05:00
|
|
|
syn = { version = "2.0", features = ["full"] }
|
|
|
|
futures = "0.3"
|
|
|
|
parking_lot = "0.12"
|
|
|
|
tokio = { version = "1", features = ["io-util"] }
|
|
|
|
|
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
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "compile-test"
|
|
|
|
harness = false
|