]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/Cargo.toml
Add comments to hygiene tests
[rust.git] / src / tools / clippy / clippy_lints / Cargo.toml
1 [package]
2 name = "clippy_lints"
3 version = "0.1.57"
4 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
5 repository = "https://github.com/rust-lang/rust-clippy"
6 readme = "README.md"
7 license = "MIT OR Apache-2.0"
8 keywords = ["clippy", "lint", "plugin"]
9 edition = "2021"
10
11 [dependencies]
12 cargo_metadata = "0.12"
13 clippy_utils = { path = "../clippy_utils" }
14 if_chain = "1.0"
15 itertools = "0.10"
16 pulldown-cmark = { version = "0.8", default-features = false }
17 quine-mc_cluskey = "0.2"
18 regex-syntax = "0.6"
19 serde = { version = "1.0", features = ["derive"] }
20 serde_json = { version = "1.0", optional = true }
21 toml = "0.5"
22 unicode-normalization = "0.1"
23 unicode-script = { version = "0.5", default-features = false }
24 semver = "0.11"
25 rustc-semver = "1.1"
26 # NOTE: cargo requires serde feat in its url dep
27 # see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
28 url = { version = "2.2", features = ["serde"] }
29
30 [features]
31 deny-warnings = ["clippy_utils/deny-warnings"]
32 # build clippy with internal lints enabled, off by default
33 internal-lints = ["clippy_utils/internal-lints"]
34 metadata-collector-lint = ["serde_json", "clippy_utils/metadata-collector-lint"]
35
36 [package.metadata.rust-analyzer]
37 # This crate uses #[feature(rustc_private)]
38 rustc_private = true