]> git.lizzy.rs Git - rust.git/blob - clippy_lints/Cargo.toml
Version bump
[rust.git] / clippy_lints / Cargo.toml
1 cargo-features = ["edition"]
2
3 [package]
4 name = "clippy_lints"
5 # begin automatic update
6 version = "0.0.211"
7 # end automatic update
8 authors = [
9         "Manish Goregaokar <manishsmail@gmail.com>",
10         "Andre Bogus <bogusandre@gmail.com>",
11         "Georg Brandl <georg@python.org>",
12         "Martin Carton <cartonmartin@gmail.com>"
13 ]
14 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
15 repository = "https://github.com/rust-lang-nursery/rust-clippy"
16 readme = "README.md"
17 license = "MPL-2.0"
18 keywords = ["clippy", "lint", "plugin"]
19 edition = "2018"
20
21 [dependencies]
22 cargo_metadata = "0.5"
23 itertools = "0.7"
24 lazy_static = "1.0"
25 matches = "0.1.2"
26 quine-mc_cluskey = "0.2.2"
27 regex-syntax = "0.6"
28 semver = "0.9.0"
29 serde = "1.0"
30 serde_derive = "1.0"
31 toml = "0.4"
32 unicode-normalization = "0.1"
33 pulldown-cmark = "0.1"
34 url = "1.7.0"
35 if_chain = "0.1"
36
37 [features]
38 debugging = []