rust/Cargo.toml

79 lines
1.9 KiB
TOML
Raw Normal View History

2014-11-19 01:53:40 -06:00
[package]
2014-12-25 18:00:03 -06:00
name = "clippy"
2024-10-18 06:25:50 -05:00
version = "0.1.84"
2015-05-09 04:52:22 -05:00
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/rust-lang/rust-clippy"
2015-05-09 04:52:22 -05:00
readme = "README.md"
license = "MIT OR Apache-2.0"
2015-05-09 04:52:22 -05:00
keywords = ["clippy", "lint", "plugin"]
categories = ["development-tools", "development-tools::cargo-plugins"]
2017-09-18 05:47:33 -05:00
build = "build.rs"
edition = "2021"
2018-10-02 02:58:02 -05:00
publish = false
2014-12-24 17:13:56 -06:00
2016-02-17 11:16:29 -06:00
[[bin]]
name = "cargo-clippy"
test = false
path = "src/main.rs"
2014-12-24 17:13:56 -06:00
2017-09-18 05:47:33 -05:00
[[bin]]
name = "clippy-driver"
path = "src/driver.rs"
[dependencies]
clippy_config = { path = "clippy_config" }
clippy_lints = { path = "clippy_lints" }
rustc_tools_util = "0.4.0"
tempfile = { version = "3.3", optional = true }
termize = "0.1"
color-print = "0.3.4"
anstream = "0.6.0"
2015-05-09 04:49:12 -05:00
[dev-dependencies]
cargo_metadata = "0.18.1"
2024-08-17 14:38:10 -05:00
ui_test = "0.26.4"
regex = "1.5.5"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.122"
toml = "0.7.3"
walkdir = "2.3"
filetime = "0.2.9"
itertools = "0.12"
2024-10-18 09:08:50 -05:00
pulldown-cmark = { version = "0.11", default-features = false, features = ["html"] }
rinja = { version = "0.3", default-features = false, features = ["config"] }
# UI test dependencies
clippy_utils = { path = "clippy_utils" }
if_chain = "1.0"
quote = "1.0.25"
syn = { version = "2.0", features = ["full"] }
futures = "0.3"
parking_lot = "0.12"
tokio = { version = "1", features = ["io-util"] }
[build-dependencies]
rustc_tools_util = "0.4.0"
2015-07-26 09:53:11 -05:00
[features]
2020-03-13 20:22:51 -05:00
integration = ["tempfile"]
internal = ["clippy_lints/internal", "tempfile"]
[package.metadata.rust-analyzer]
# This package uses #[feature(rustc_private)]
rustc_private = true
[[test]]
name = "compile-test"
harness = false
[[test]]
name = "dogfood"
harness = false
# quine-mc_cluskey makes up a significant part of the runtime in dogfood
# due to the number of conditions in the clippy_lints crate
# and enabling optimizations for that specific dependency helps a bit
# without increasing total build times.
[profile.dev.package.quine-mc_cluskey]
opt-level = 3