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