]> git.lizzy.rs Git - rust.git/blob - clippy_lints/Cargo.toml
Merge pull request #2084 from ykrivopalov/bit_mask_verbosity_threshold
[rust.git] / clippy_lints / Cargo.toml
1 [package]
2 name = "clippy_lints"
3 # begin automatic update
4 version = "0.0.165"
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-nursery/rust-clippy"
14 readme = "README.md"
15 license = "MPL-2.0"
16 keywords = ["clippy", "lint", "plugin"]
17 workspace = ".."
18
19 [dependencies]
20 itertools = "0.6.0"
21 lazy_static = "0.2.8"
22 matches = "0.1.2"
23 quine-mc_cluskey = "0.2.2"
24 regex-syntax = "0.4.0"
25 semver = "0.6.0"
26 serde = "1.0"
27 serde_derive = "1.0"
28 toml = "0.4"
29 unicode-normalization = "0.1"
30 pulldown-cmark = "0.0.15"
31
32 [features]
33 debugging = []