2016-05-25 00:25:25 +08:00
|
|
|
[package]
|
|
|
|
name = "clippy_lints"
|
2016-05-27 21:57:44 +08:00
|
|
|
# begin automatic update
|
2021-02-06 07:29:05 +08:00
|
|
|
version = "0.1.52"
|
2016-05-27 21:57:44 +08:00
|
|
|
# end automatic update
|
2016-05-25 00:25:25 +08:00
|
|
|
authors = [
|
|
|
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
|
|
|
"Andre Bogus <bogusandre@gmail.com>",
|
|
|
|
"Georg Brandl <georg@python.org>",
|
|
|
|
"Martin Carton <cartonmartin@gmail.com>"
|
|
|
|
]
|
|
|
|
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
|
2018-11-22 11:40:09 +08:00
|
|
|
repository = "https://github.com/rust-lang/rust-clippy"
|
2016-05-25 00:25:25 +08:00
|
|
|
readme = "README.md"
|
2019-10-04 23:39:23 +08:00
|
|
|
license = "MIT OR Apache-2.0"
|
2016-05-25 00:25:25 +08:00
|
|
|
keywords = ["clippy", "lint", "plugin"]
|
2018-05-30 16:18:52 +08:00
|
|
|
edition = "2018"
|
2016-05-25 00:25:25 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-24 04:16:59 +08:00
|
|
|
cargo_metadata = "0.12"
|
2021-02-25 18:25:22 +08:00
|
|
|
clippy_utils = { path = "../clippy_utils" }
|
2019-11-06 17:46:32 +08:00
|
|
|
if_chain = "1.0.0"
|
2020-03-08 08:33:17 +08:00
|
|
|
itertools = "0.9"
|
2020-09-24 20:49:22 +08:00
|
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
2017-05-29 06:11:58 +08:00
|
|
|
quine-mc_cluskey = "0.2.2"
|
2018-05-11 17:32:05 +08:00
|
|
|
regex-syntax = "0.6"
|
2019-05-10 01:05:34 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-11-06 18:00:12 +08:00
|
|
|
smallvec = { version = "1", features = ["union"] }
|
2019-08-15 21:58:36 +08:00
|
|
|
toml = "0.5.3"
|
2017-05-29 06:11:58 +08:00
|
|
|
unicode-normalization = "0.1"
|
2020-10-24 04:16:59 +08:00
|
|
|
semver = "0.11"
|
2020-12-06 22:01:03 +08:00
|
|
|
rustc-semver="1.1.0"
|
2019-11-06 17:46:32 +08:00
|
|
|
# NOTE: cargo requires serde feat in its url dep
|
|
|
|
# see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
|
|
|
|
url = { version = "2.1.0", features = ["serde"] }
|
2020-05-28 21:45:24 +08:00
|
|
|
quote = "1"
|
|
|
|
syn = { version = "1", features = ["full"] }
|
2016-05-25 00:25:25 +08:00
|
|
|
|
|
|
|
[features]
|
2019-11-26 00:23:07 +08:00
|
|
|
deny-warnings = []
|
2020-12-06 22:01:03 +08:00
|
|
|
# build clippy with internal lints enabled, off by default
|
2021-02-25 18:25:22 +08:00
|
|
|
internal-lints = ["clippy_utils/internal-lints"]
|