2016-05-25 00:25:25 +08:00
|
|
|
[package]
|
|
|
|
name = "clippy_lints"
|
2024-10-18 19:25:50 +08:00
|
|
|
version = "0.1.84"
|
2016-05-25 00:25:25 +08:00
|
|
|
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"]
|
2021-09-29 01:03:12 +08:00
|
|
|
edition = "2021"
|
2016-05-25 00:25:25 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-11 21:31:08 +08:00
|
|
|
arrayvec = { version = "0.7", default-features = false }
|
2024-01-26 02:17:36 +08:00
|
|
|
cargo_metadata = "0.18"
|
2023-11-03 00:35:56 +08:00
|
|
|
clippy_config = { path = "../clippy_config" }
|
2021-02-25 18:25:22 +08:00
|
|
|
clippy_utils = { path = "../clippy_utils" }
|
2024-02-27 22:25:18 +08:00
|
|
|
itertools = "0.12"
|
2021-09-09 17:19:03 +08:00
|
|
|
quine-mc_cluskey = "0.2"
|
2023-12-16 21:12:50 +08:00
|
|
|
regex-syntax = "0.8"
|
2019-05-10 01:05:34 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-05-06 17:51:22 +08:00
|
|
|
serde_json = { version = "1.0", optional = true }
|
2023-06-02 17:41:57 +08:00
|
|
|
tempfile = { version = "3.3.0", optional = true }
|
|
|
|
toml = "0.7.3"
|
2023-07-02 20:35:19 +08:00
|
|
|
regex = { version = "1.5", optional = true }
|
2017-05-29 06:11:58 +08:00
|
|
|
unicode-normalization = "0.1"
|
2021-09-09 17:19:03 +08:00
|
|
|
unicode-script = { version = "0.5", default-features = false }
|
2021-11-02 21:19:31 +08:00
|
|
|
semver = "1.0"
|
2023-06-02 17:41:57 +08:00
|
|
|
url = "2.2"
|
2016-05-25 00:25:25 +08:00
|
|
|
|
2023-10-06 23:35:45 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
walkdir = "2.3"
|
|
|
|
|
2016-05-25 00:25:25 +08:00
|
|
|
[features]
|
2020-12-06 22:01:03 +08:00
|
|
|
# build clippy with internal lints enabled, off by default
|
2023-11-03 00:35:56 +08:00
|
|
|
internal = ["serde_json", "tempfile", "regex"]
|
2021-03-12 22:30:50 +08:00
|
|
|
|
|
|
|
[package.metadata.rust-analyzer]
|
|
|
|
# This crate uses #[feature(rustc_private)]
|
|
|
|
rustc_private = true
|