2021-03-12 15:30:50 +01:00
|
|
|
[package]
|
|
|
|
name = "lintcheck"
|
|
|
|
version = "0.0.1"
|
2022-07-18 09:39:37 +02:00
|
|
|
description = "tool to monitor impact of changes in Clippy's lints on a part of the ecosystem"
|
2021-03-12 15:30:50 +01:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/rust-lang/rust-clippy"
|
|
|
|
categories = ["development-tools"]
|
2022-05-21 13:24:00 +02:00
|
|
|
edition = "2021"
|
2021-03-12 15:30:50 +01:00
|
|
|
publish = false
|
2023-03-10 10:53:50 +01:00
|
|
|
default-run = "lintcheck"
|
2021-03-12 15:30:50 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-10 14:01:19 +01:00
|
|
|
cargo_metadata = "0.15.3"
|
2024-05-21 10:39:30 -07:00
|
|
|
clap = { version = "4.4", features = ["derive", "env"] }
|
2022-10-06 09:44:38 +02:00
|
|
|
crossbeam-channel = "0.5.6"
|
2024-06-27 18:56:04 +02:00
|
|
|
diff = "0.1.13"
|
2021-09-09 05:19:03 -04:00
|
|
|
flate2 = "1.0"
|
2024-07-25 18:29:17 +02:00
|
|
|
itertools = "0.13"
|
2022-01-10 11:34:07 -08:00
|
|
|
rayon = "1.5.1"
|
2021-09-09 05:19:03 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-10-06 09:44:38 +02:00
|
|
|
serde_json = "1.0.85"
|
2024-06-27 18:56:04 +02:00
|
|
|
strip-ansi-escapes = "0.2.0"
|
2021-09-09 05:19:03 -04:00
|
|
|
tar = "0.4"
|
2023-06-02 11:41:57 +02:00
|
|
|
toml = "0.7.3"
|
2024-06-27 18:56:04 +02:00
|
|
|
ureq = { version = "2.2", features = ["json"] }
|
2021-09-09 05:19:03 -04:00
|
|
|
walkdir = "2.3"
|