rust/Cargo.toml

59 lines
1.6 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-03-25 18:48:48 +01:00
version = "0.1.53"
authors = ["The Rust Clippy Developers"]
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"
2018-05-30 10:18:52 +02:00
edition = "2018"
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]
# begin automatic update
clippy_lints = { version = "0.1.50", path = "clippy_lints" }
# end automatic update
semver = "0.11"
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
tempfile = { version = "3.1.0", optional = true }
2015-05-09 11:49:12 +02:00
[dev-dependencies]
cargo_metadata = "0.12"
compiletest_rs = { version = "0.6.0", features = ["tmp"] }
tester = "0.9"
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
serde = { version = "1.0", features = ["derive"] }
derive-new = "0.5"
regex = "1.4"
2021-03-15 19:20:01 +01:00
quote = "1"
syn = { version = "1", features = ["full"] }
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.
rustc-workspace-hack = "1.0.0"
[build-dependencies]
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
2015-07-26 16:53:11 +02:00
[features]
2019-07-15 07:35:02 +02:00
deny-warnings = []
2020-03-14 02:22:51 +01:00
integration = ["tempfile"]
internal-lints = ["clippy_lints/internal-lints"]
[package.metadata.rust-analyzer]
# This package uses #[feature(rustc_private)]
rustc_private = true