]> git.lizzy.rs Git - rust.git/blob - clippy_lints/Cargo.toml
Auto merge of #3968 - kraai:lint-pass-macros, r=flip1995
[rust.git] / clippy_lints / Cargo.toml
1 [package]
2 name = "clippy_lints"
3 # begin automatic update
4 version = "0.0.212"
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 = "MPL-2.0"
16 keywords = ["clippy", "lint", "plugin"]
17 edition = "2018"
18
19 [dependencies]
20 cargo_metadata = "0.7.1"
21 itertools = "0.8"
22 lazy_static = "1.0.2"
23 matches = "0.1.7"
24 quine-mc_cluskey = "0.2.2"
25 regex-syntax = "0.6"
26 semver = "0.9.0"
27 serde = "1.0"
28 serde_derive = "1.0"
29 toml = "0.4"
30 unicode-normalization = "0.1"
31 pulldown-cmark = "0.2"
32 url = "1.7.0"
33 if_chain = "0.1.3"
34 smallvec = { version = "0.6.5", features = ["union"] }
35
36 [features]
37 debugging = []