2016-05-24 11:25:25 -05:00
|
|
|
[package]
|
|
|
|
name = "clippy_lints"
|
2023-07-17 03:19:29 -05:00
|
|
|
version = "0.1.73"
|
2016-05-24 11:25:25 -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"
|
2016-05-24 11:25:25 -05:00
|
|
|
readme = "README.md"
|
2019-10-04 10:39:23 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
2016-05-24 11:25:25 -05:00
|
|
|
keywords = ["clippy", "lint", "plugin"]
|
2021-09-28 12:03:12 -05:00
|
|
|
edition = "2021"
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-11 08:31:08 -05:00
|
|
|
arrayvec = { version = "0.7", default-features = false }
|
2023-02-10 07:01:19 -06:00
|
|
|
cargo_metadata = "0.15.3"
|
2021-02-25 04:25:22 -06:00
|
|
|
clippy_utils = { path = "../clippy_utils" }
|
2022-11-21 13:34:47 -06:00
|
|
|
declare_clippy_lint = { path = "../declare_clippy_lint" }
|
2021-09-09 04:19:03 -05:00
|
|
|
if_chain = "1.0"
|
2022-03-04 11:54:28 -06:00
|
|
|
itertools = "0.10.1"
|
2021-12-28 09:19:23 -06:00
|
|
|
pulldown-cmark = { version = "0.9", default-features = false }
|
2021-09-09 04:19:03 -05:00
|
|
|
quine-mc_cluskey = "0.2"
|
2023-05-20 08:39:26 -05:00
|
|
|
regex-syntax = "0.7"
|
2019-05-09 12:05:34 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-05-06 04:51:22 -05:00
|
|
|
serde_json = { version = "1.0", optional = true }
|
2023-06-02 04:41:57 -05:00
|
|
|
tempfile = { version = "3.3.0", optional = true }
|
|
|
|
toml = "0.7.3"
|
2023-07-02 07:35:19 -05:00
|
|
|
regex = { version = "1.5", optional = true }
|
2017-05-28 17:11:58 -05:00
|
|
|
unicode-normalization = "0.1"
|
2021-09-09 04:19:03 -05:00
|
|
|
unicode-script = { version = "0.5", default-features = false }
|
2021-11-02 08:19:31 -05:00
|
|
|
semver = "1.0"
|
2021-09-09 04:19:03 -05:00
|
|
|
rustc-semver = "1.1"
|
2023-06-02 04:41:57 -05:00
|
|
|
url = "2.2"
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
[features]
|
2021-05-20 05:30:31 -05:00
|
|
|
deny-warnings = ["clippy_utils/deny-warnings"]
|
2020-12-06 08:01:03 -06:00
|
|
|
# build clippy with internal lints enabled, off by default
|
2023-07-02 07:35:19 -05:00
|
|
|
internal = ["clippy_utils/internal", "serde_json", "tempfile", "regex"]
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
# This crate uses #[feature(rustc_private)]
|
|
|
|
rustc_private = true
|