2014-11-19 01:53:40 -06:00
|
|
|
[package]
|
2014-12-25 18:00:03 -06:00
|
|
|
name = "clippy"
|
2018-07-07 01:23:19 -05:00
|
|
|
version = "0.0.212"
|
2015-04-30 04:48:43 -05:00
|
|
|
authors = [
|
|
|
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
2015-08-20 01:59:07 -05:00
|
|
|
"Andre Bogus <bogusandre@gmail.com>",
|
2016-02-12 15:29:39 -06:00
|
|
|
"Georg Brandl <georg@python.org>",
|
2016-06-25 08:05:29 -05:00
|
|
|
"Martin Carton <cartonmartin@gmail.com>",
|
|
|
|
"Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
|
2015-04-30 04:48:43 -05:00
|
|
|
]
|
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"
|
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
|
2018-07-07 01:23:19 -05:00
|
|
|
clippy_lints = { version = "0.0.212", 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"
|
2020-04-14 14:29:23 -05:00
|
|
|
compiletest_rs = { version = "0.5.0", features = ["tmp"] }
|
2019-11-18 09:38:36 -06:00
|
|
|
tester = "0.7"
|
2017-12-20 10:16:43 -06:00
|
|
|
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
|
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"
|
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]
|
2019-07-15 00:35:02 -05:00
|
|
|
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"]
|