rust-clippy/Cargo.toml

63 lines
1.5 KiB
TOML
Raw Normal View History

2014-11-19 15:53:40 +08:00
[package]
2014-12-26 08:00:03 +08:00
name = "clippy"
2023-06-02 16:18:34 +08:00
version = "0.1.72"
2015-05-09 17:52:22 +08:00
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/rust-lang/rust-clippy"
2015-05-09 17:52:22 +08:00
readme = "README.md"
license = "MIT OR Apache-2.0"
2015-05-09 17:52:22 +08:00
keywords = ["clippy", "lint", "plugin"]
categories = ["development-tools", "development-tools::cargo-plugins"]
2017-09-18 18:47:33 +08:00
build = "build.rs"
edition = "2021"
2018-10-02 15:58:02 +08:00
publish = false
2014-12-25 07:13:56 +08:00
2016-02-18 01:16:29 +08:00
[[bin]]
name = "cargo-clippy"
test = false
path = "src/main.rs"
2014-12-25 07:13:56 +08:00
2017-09-18 18:47:33 +08:00
[[bin]]
name = "clippy-driver"
path = "src/driver.rs"
[dependencies]
clippy_lints = { path = "clippy_lints" }
rustc_tools_util = "0.3.0"
2021-09-09 17:19:03 +08:00
tempfile = { version = "3.2", optional = true }
termize = "0.1"
2015-05-09 17:49:12 +08:00
[dev-dependencies]
compiletest_rs = { version = "0.10", features = ["tmp"] }
tester = "0.9"
2021-09-09 17:19:03 +08:00
regex = "1.5"
toml = "0.7.3"
walkdir = "2.3"
# This is used by the `collect-metadata` alias.
filetime = "0.2"
2016-06-26 00:12:29 +08:00
# UI test dependencies
clap = { version = "4.1.4", features = ["derive"] }
clippy_utils = { path = "clippy_utils" }
derive-new = "0.5"
if_chain = "1.0"
2022-03-05 01:54:28 +08:00
itertools = "0.10.1"
2021-09-09 17:19:03 +08:00
quote = "1.0"
serde = { version = "1.0.125", features = ["derive"] }
2023-04-12 08:51:11 +08:00
syn = { version = "2.0", features = ["full"] }
futures = "0.3"
parking_lot = "0.12"
tokio = { version = "1", features = ["io-util"] }
rustc-semver = "1.1"
[build-dependencies]
rustc_tools_util = "0.3.0"
2015-07-26 22:53:11 +08:00
[features]
deny-warnings = ["clippy_lints/deny-warnings"]
2020-03-14 09:22:51 +08:00
integration = ["tempfile"]
internal = ["clippy_lints/internal", "tempfile"]
[package.metadata.rust-analyzer]
# This package uses #[feature(rustc_private)]
rustc_private = true