2014-11-19 08:53:40 +01:00
|
|
|
[package]
|
2014-12-26 01:00:03 +01:00
|
|
|
name = "clippy"
|
2018-07-07 08:23:19 +02:00
|
|
|
version = "0.0.212"
|
2015-04-30 11:48:43 +02:00
|
|
|
authors = [
|
|
|
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
2015-08-20 08:59:07 +02:00
|
|
|
"Andre Bogus <bogusandre@gmail.com>",
|
2016-02-12 22:29:39 +01:00
|
|
|
"Georg Brandl <georg@python.org>",
|
2016-06-25 15:05:29 +02:00
|
|
|
"Martin Carton <cartonmartin@gmail.com>",
|
|
|
|
"Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
|
2015-04-30 11:48:43 +02:00
|
|
|
]
|
2015-05-09 11:52:22 +02:00
|
|
|
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
|
2018-11-22 04:40:09 +01:00
|
|
|
repository = "https://github.com/rust-lang/rust-clippy"
|
2015-05-09 11:52:22 +02:00
|
|
|
readme = "README.md"
|
2019-10-04 17:39:23 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2015-05-09 11:52:22 +02:00
|
|
|
keywords = ["clippy", "lint", "plugin"]
|
2017-01-20 19:35:40 +01:00
|
|
|
categories = ["development-tools", "development-tools::cargo-plugins"]
|
2017-09-18 12:47:33 +02:00
|
|
|
build = "build.rs"
|
2018-05-30 10:18:52 +02:00
|
|
|
edition = "2018"
|
2018-10-02 09:58:02 +02:00
|
|
|
publish = false
|
2014-12-25 00:13:56 +01:00
|
|
|
|
2016-02-17 18:16:29 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "cargo-clippy"
|
|
|
|
test = false
|
2017-07-16 19:46:06 +02:00
|
|
|
path = "src/main.rs"
|
2014-12-25 00:13:56 +01:00
|
|
|
|
2017-09-18 12:47:33 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "clippy-driver"
|
|
|
|
path = "src/driver.rs"
|
|
|
|
|
2015-09-04 09:08:07 +02:00
|
|
|
[dependencies]
|
2016-05-27 15:57:44 +02:00
|
|
|
# begin automatic update
|
2018-07-07 08:23:19 +02:00
|
|
|
clippy_lints = { version = "0.0.212", path = "clippy_lints" }
|
2016-05-27 15:57:44 +02:00
|
|
|
# end automatic update
|
2018-03-13 15:02:40 +01:00
|
|
|
semver = "0.9"
|
2019-05-23 17:40:54 +02:00
|
|
|
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
|
2019-11-23 16:21:16 +01:00
|
|
|
tempfile = { version = "3.1.0", optional = true }
|
2019-09-27 07:09:12 +02:00
|
|
|
lazy_static = "1.0"
|
2015-09-04 09:08:07 +02:00
|
|
|
|
2015-05-09 11:49:12 +02:00
|
|
|
[dev-dependencies]
|
2020-05-31 17:38:59 +02:00
|
|
|
cargo_metadata = "0.9.1"
|
2020-04-14 21:29:23 +02:00
|
|
|
compiletest_rs = { version = "0.5.0", features = ["tmp"] }
|
2019-11-18 16:38:36 +01:00
|
|
|
tester = "0.7"
|
2017-12-15 10:02:39 +01:00
|
|
|
lazy_static = "1.0"
|
2017-12-20 17:16:43 +01:00
|
|
|
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
|
2019-05-09 19:05:34 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-03-11 05:57:28 +01:00
|
|
|
derive-new = "0.5"
|
2016-06-25 18:12:29 +02:00
|
|
|
|
2018-08-02 06:33:33 +02: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 08:19:47 +02:00
|
|
|
[build-dependencies]
|
2019-05-23 17:40:54 +02:00
|
|
|
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
|
2018-09-06 08:19:47 +02:00
|
|
|
|
2015-07-26 16:53:11 +02:00
|
|
|
[features]
|
2019-07-15 07:35:02 +02:00
|
|
|
deny-warnings = []
|
2020-03-14 02:22:51 +01:00
|
|
|
integration = ["tempfile"]
|