rust-clippy/Cargo.toml

67 lines
1.8 KiB
TOML
Raw Normal View History

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