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