]> git.lizzy.rs Git - rust.git/blob - lintcheck/Cargo.toml
Auto merge of #9417 - Jarcho:ice_9414, r=Alexendoo
[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 flate2 = "1.0"
16 rayon = "1.5.1"
17 serde = { version = "1.0", features = ["derive"] }
18 tar = "0.4"
19 toml = "0.5"
20 ureq = "2.2"
21 walkdir = "2.3"
22
23 [features]
24 deny-warnings = []