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