6c2199ea9f
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
25 lines
629 B
TOML
25 lines
629 B
TOML
[package]
|
|
name = "lintcheck"
|
|
version = "0.0.1"
|
|
description = "tool to monitor impact of changes in Clippys 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"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
flate2 = {version = "1.0.19"}
|
|
fs_extra = {version = "1.2.0"}
|
|
rayon = {version = "1.5.0"}
|
|
serde = {version = "1.0", features = ["derive"]}
|
|
serde_json = {version = "1.0"}
|
|
tar = {version = "0.4.30"}
|
|
toml = {version = "0.5"}
|
|
ureq = {version = "2.0.0-rc3"}
|
|
|
|
[features]
|
|
deny-warnings = []
|