rust/Cargo.toml

65 lines
1.8 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"
version = "0.1.57"
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"
2018-05-30 16:18:52 +08:00
edition = "2018"
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]
# 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 17:49:12 +08:00
[dev-dependencies]
cargo_metadata = "0.12"
compiletest_rs = { version = "0.6.0", features = ["tmp"] }
tester = "0.9"
regex = "1.4"
# This is used by the `collect-metadata` alias.
filetime = "0.2"
2016-06-26 00:12:29 +08: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"
# UI test dependencies
clippy_utils = { path = "clippy_utils" }
derive-new = "0.5"
if_chain = "1.0"
itertools = "0.10.1"
quote = "1"
serde = { version = "1.0", features = ["derive"] }
syn = { version = "1", features = ["full"] }
[build-dependencies]
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
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-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