2014-11-19 01:53:40 -06:00
|
|
|
[package]
|
2014-12-25 18:00:03 -06:00
|
|
|
name = "clippy"
|
2021-07-29 05:16:06 -05:00
|
|
|
version = "0.1.56"
|
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"
|
2018-05-30 03:18:52 -05:00
|
|
|
edition = "2018"
|
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]
|
2016-05-27 08:57:44 -05:00
|
|
|
# begin automatic update
|
2021-01-02 09:29:43 -06:00
|
|
|
clippy_lints = { version = "0.1.50", path = "clippy_lints" }
|
2016-05-27 08:57:44 -05:00
|
|
|
# end automatic update
|
2020-10-23 15:16:59 -05:00
|
|
|
semver = "0.11"
|
2020-12-06 08:01:03 -06:00
|
|
|
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
|
2019-11-23 09:21:16 -06:00
|
|
|
tempfile = { version = "3.1.0", optional = true }
|
2015-09-04 02:08:07 -05:00
|
|
|
|
2015-05-09 04:49:12 -05:00
|
|
|
[dev-dependencies]
|
2020-10-23 15:16:59 -05:00
|
|
|
cargo_metadata = "0.12"
|
2021-02-25 04:25:22 -06:00
|
|
|
compiletest_rs = { version = "0.6.0", features = ["tmp"] }
|
|
|
|
tester = "0.9"
|
2019-05-09 12:05:34 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-03-10 22:57:28 -06:00
|
|
|
derive-new = "0.5"
|
2021-03-12 08:30:50 -06:00
|
|
|
regex = "1.4"
|
2021-03-25 13:29:11 -05:00
|
|
|
quote = "1"
|
|
|
|
syn = { version = "1", features = ["full"] }
|
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
|
|
|
|
2018-08-01 23:33:33 -05: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"
|
|
|
|
|
2018-09-06 01:19:47 -05:00
|
|
|
[build-dependencies]
|
2020-12-06 08:01:03 -06:00
|
|
|
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
|
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"]
|
2020-12-06 08:01:03 -06:00
|
|
|
internal-lints = ["clippy_lints/internal-lints"]
|
2021-05-06 04:51:22 -05:00
|
|
|
metadata-collector-lint = ["internal-lints", "clippy_lints/metadata-collector-lint"]
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
# This package uses #[feature(rustc_private)]
|
|
|
|
rustc_private = true
|