rust/Cargo.toml

63 lines
1.7 KiB
TOML
Raw Normal View History

2014-11-19 08:53:40 +01:00
[package]
2014-12-26 01:00:03 +01:00
name = "clippy"
2021-10-21 12:19:32 +02:00
version = "0.1.58"
2015-05-09 11:52:22 +02:00
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/rust-lang/rust-clippy"
2015-05-09 11:52:22 +02:00
readme = "README.md"
license = "MIT OR Apache-2.0"
2015-05-09 11:52:22 +02:00
keywords = ["clippy", "lint", "plugin"]
categories = ["development-tools", "development-tools::cargo-plugins"]
2017-09-18 12:47:33 +02:00
build = "build.rs"
edition = "2021"
2018-10-02 09:58:02 +02:00
publish = false
2014-12-25 00:13:56 +01:00
2016-02-17 18:16:29 +01:00
[[bin]]
name = "cargo-clippy"
test = false
path = "src/main.rs"
2014-12-25 00:13:56 +01:00
2017-09-18 12:47:33 +02:00
[[bin]]
name = "clippy-driver"
path = "src/driver.rs"
[dependencies]
2021-09-09 11:19:03 +02:00
clippy_lints = { version = "0.1", path = "clippy_lints" }
semver = "0.11"
2021-09-09 11:19:03 +02:00
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
tempfile = { version = "3.2", optional = true }
2015-05-09 11:49:12 +02:00
[dev-dependencies]
cargo_metadata = "0.12"
2021-09-09 11:19:03 +02:00
compiletest_rs = { version = "0.7", features = ["tmp"] }
tester = "0.9"
2021-09-09 11:19:03 +02:00
regex = "1.5"
# This is used by the `collect-metadata` alias.
filetime = "0.2"
2016-06-25 18:12:29 +02: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 11:19:03 +02:00
rustc-workspace-hack = "1.0"
# UI test dependencies
clippy_utils = { path = "clippy_utils" }
derive-new = "0.5"
if_chain = "1.0"
2021-09-09 11:19:03 +02:00
itertools = "0.10"
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
2021-09-09 11:19:03 +02:00
syn = { version = "1.0", features = ["full"] }
[build-dependencies]
2021-09-09 11:19:03 +02:00
rustc_tools_util = { version = "0.2", path = "rustc_tools_util" }
2015-07-26 16:53:11 +02:00
[features]
deny-warnings = ["clippy_lints/deny-warnings"]
2020-03-14 02:22:51 +01:00
integration = ["tempfile"]
internal-lints = ["clippy_lints/internal-lints"]
metadata-collector-lint = ["internal-lints", "clippy_lints/metadata-collector-lint"]
[package.metadata.rust-analyzer]
# This package uses #[feature(rustc_private)]
rustc_private = true