]> git.lizzy.rs Git - rust.git/blob - lintcheck/Cargo.toml
Remove blank lines when needless_return returns no value
[rust.git] / lintcheck / Cargo.toml
1 [package]
2 name = "lintcheck"
3 version = "0.0.1"
4 description = "tool to monitor impact of changes in Clippy's lints on a part of the ecosystem"
5 readme = "README.md"
6 license = "MIT OR Apache-2.0"
7 repository = "https://github.com/rust-lang/rust-clippy"
8 categories = ["development-tools"]
9 edition = "2021"
10 publish = false
11
12 [dependencies]
13 cargo_metadata = "0.14"
14 clap = "3.2"
15 crossbeam-channel = "0.5.6"
16 flate2 = "1.0"
17 rayon = "1.5.1"
18 serde = { version = "1.0", features = ["derive"] }
19 serde_json = "1.0.85"
20 tar = "0.4"
21 toml = "0.5"
22 ureq = "2.2"
23 walkdir = "2.3"
24
25 [features]
26 deny-warnings = []