]> git.lizzy.rs Git - rust.git/blob - lintcheck/Cargo.toml
Auto merge of #7521 - rukai:fix_lintcheck_local_path_handling, r=camsteffen
[rust.git] / lintcheck / Cargo.toml
1 [package]
2 name = "lintcheck"
3 version = "0.0.1"
4 description = "tool to monitor impact of changes in Clippys 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 = "2018"
10 publish = false
11
12 [dependencies]
13 clap = "2.33"
14 flate2 = {version = "1.0.19"}
15 fs_extra = {version = "1.2.0"}
16 rayon = {version = "1.5.0"}
17 serde = {version = "1.0", features = ["derive"]}
18 serde_json = {version = "1.0"}
19 tar = {version = "0.4.30"}
20 toml = {version = "0.5"}
21 ureq = {version = "2.0.0-rc3"}
22 walkdir = {version = "2.3.2"}
23
24 [features]
25 deny-warnings = []