]> git.lizzy.rs Git - rust.git/blob - clippy_lints/Cargo.toml
d5ec8597044c8d83ba2c5ebafeadd930792e761c
[rust.git] / clippy_lints / Cargo.toml
1 [package]
2 name = "clippy_lints"
3 # begin automatic update
4 version = "0.1.52"
5 # end automatic update
6 authors = [
7         "Manish Goregaokar <manishsmail@gmail.com>",
8         "Andre Bogus <bogusandre@gmail.com>",
9         "Georg Brandl <georg@python.org>",
10         "Martin Carton <cartonmartin@gmail.com>"
11 ]
12 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
13 repository = "https://github.com/rust-lang/rust-clippy"
14 readme = "README.md"
15 license = "MIT OR Apache-2.0"
16 keywords = ["clippy", "lint", "plugin"]
17 edition = "2018"
18
19 [dependencies]
20 cargo_metadata = "0.12"
21 clippy_utils = { path = "../clippy_utils" }
22 if_chain = "1.0.0"
23 itertools = "0.9"
24 pulldown-cmark = { version = "0.8", default-features = false }
25 quine-mc_cluskey = "0.2.2"
26 regex-syntax = "0.6"
27 serde = { version = "1.0", features = ["derive"] }
28 smallvec = { version = "1", features = ["union"] }
29 toml = "0.5.3"
30 unicode-normalization = "0.1"
31 semver = "0.11"
32 rustc-semver="1.1.0"
33 # NOTE: cargo requires serde feat in its url dep
34 # see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
35 url = { version =  "2.1.0", features = ["serde"] }
36 quote = "1"
37 syn = { version = "1", features = ["full"] }
38
39 [features]
40 deny-warnings = []
41 # build clippy with internal lints enabled, off by default
42 internal-lints = ["clippy_utils/internal-lints"]