]> git.lizzy.rs Git - rust.git/blob - lintcheck/Cargo.toml
Auto merge of #6884 - matthiaskrgr:lintcheck_crate, r=Manishearth
[rust.git] / lintcheck / Cargo.toml
1 [package]
2 name = "lintcheck"
3 version = "0.0.1"
4 authors = ["The Rust Clippy Developers"]
5 description = "tool to monitor impact of changes in Clippys lints on a part of the ecosystem"
6 readme = "README.md"
7 license = "MIT OR Apache-2.0"
8 repository = "https://github.com/rust-lang/rust-clippy"
9 categories = ["development-tools"]
10 edition = "2018"
11 publish = false
12
13 [dependencies]
14 clap = "2.33"
15 flate2 = {version = "1.0.19"}
16 fs_extra = {version = "1.2.0"}
17 rayon = {version = "1.5.0"}
18 serde = {version = "1.0", features = ["derive"]}
19 serde_json = {version = "1.0"}
20 tar = {version = "0.4.30"}
21 toml = {version = "0.5"}
22 ureq = {version = "2.0.0-rc3"}
23
24 [features]
25 deny-warnings = []