]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/Cargo.toml
Rollup merge of #82993 - camelid:source-use-diag, r=jyn514
[rust.git] / src / tools / clippy / clippy_lints / Cargo.toml
1 [package]
2 name = "clippy_lints"
3 # begin automatic update
4 version = "0.1.53"
5 # end automatic update
6 authors = ["The Rust Clippy Developers"]
7 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
8 repository = "https://github.com/rust-lang/rust-clippy"
9 readme = "README.md"
10 license = "MIT OR Apache-2.0"
11 keywords = ["clippy", "lint", "plugin"]
12 edition = "2018"
13
14 [dependencies]
15 cargo_metadata = "0.12"
16 clippy_utils = { path = "../clippy_utils" }
17 if_chain = "1.0.0"
18 itertools = "0.9"
19 pulldown-cmark = { version = "0.8", default-features = false }
20 quine-mc_cluskey = "0.2.2"
21 regex-syntax = "0.6"
22 serde = { version = "1.0", features = ["derive"] }
23 toml = "0.5.3"
24 unicode-normalization = "0.1"
25 semver = "0.11"
26 rustc-semver = "1.1.0"
27 # NOTE: cargo requires serde feat in its url dep
28 # see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
29 url = { version = "2.1.0", features = ["serde"] }
30
31 [features]
32 deny-warnings = []
33 # build clippy with internal lints enabled, off by default
34 internal-lints = ["clippy_utils/internal-lints"]
35
36 [package.metadata.rust-analyzer]
37 # This crate uses #[feature(rustc_private)]
38 rustc_private = true