rust/lintcheck/Cargo.toml

30 lines
741 B
TOML
Raw Normal View History

[package]
name = "lintcheck"
version = "0.0.1"
2022-07-09 13:00:24 +03:00
description = "tool to monitor impact of changes in Clippy's lints on a part of the ecosystem"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/rust-clippy"
categories = ["development-tools"]
2022-05-07 22:10:56 +01:00
edition = "2021"
publish = false
default-run = "lintcheck"
[dependencies]
2023-01-31 23:23:37 +01:00
cargo_metadata = "0.15.3"
clap = { version = "4.4", features = ["derive", "env"] }
crossbeam-channel = "0.5.6"
diff = "0.1.13"
2021-09-09 05:19:03 -04:00
flate2 = "1.0"
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"] }
serde_json = "1.0.85"
2024-06-24 18:06:02 +03:00
strip-ansi-escapes = "0.2.0"
2021-09-09 05:19:03 -04:00
tar = "0.4"
toml = "0.7.3"
ureq = { version = "2.2", features = ["json"] }
2021-09-09 05:19:03 -04:00
walkdir = "2.3"
[features]
deny-warnings = []