2016-05-24 16:25:25 +00:00
|
|
|
[package]
|
|
|
|
name = "clippy_lints"
|
2016-05-27 13:57:44 +00:00
|
|
|
# begin automatic update
|
2018-07-07 06:23:19 +00:00
|
|
|
version = "0.0.212"
|
2016-05-27 13:57:44 +00:00
|
|
|
# end automatic update
|
2016-05-24 16:25:25 +00: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 03:40:09 +00:00
|
|
|
repository = "https://github.com/rust-lang/rust-clippy"
|
2016-05-24 16:25:25 +00:00
|
|
|
readme = "README.md"
|
2019-10-04 15:39:23 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2016-05-24 16:25:25 +00:00
|
|
|
keywords = ["clippy", "lint", "plugin"]
|
2018-05-30 08:18:52 +00:00
|
|
|
edition = "2018"
|
2016-05-24 16:25:25 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-23 20:16:59 +00:00
|
|
|
cargo_metadata = "0.12"
|
2019-11-06 09:46:32 +00:00
|
|
|
if_chain = "1.0.0"
|
2020-03-08 00:33:17 +00:00
|
|
|
itertools = "0.9"
|
2020-09-24 12:49:22 +00:00
|
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
2017-05-28 22:11:58 +00:00
|
|
|
quine-mc_cluskey = "0.2.2"
|
2018-05-11 09:32:05 +00:00
|
|
|
regex-syntax = "0.6"
|
2019-05-09 17:05:34 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-11-06 10:00:12 +00:00
|
|
|
smallvec = { version = "1", features = ["union"] }
|
2019-08-15 13:58:36 +00:00
|
|
|
toml = "0.5.3"
|
2017-05-28 22:11:58 +00:00
|
|
|
unicode-normalization = "0.1"
|
2020-10-23 20:16:59 +00:00
|
|
|
semver = "0.11"
|
2019-11-06 09:46:32 +00: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 13:45:24 +00:00
|
|
|
quote = "1"
|
|
|
|
syn = { version = "1", features = ["full"] }
|
2016-05-24 16:25:25 +00:00
|
|
|
|
|
|
|
[features]
|
2019-11-25 16:23:07 +00:00
|
|
|
deny-warnings = []
|