rust/Cargo.toml

58 lines
1.6 KiB
TOML
Raw Normal View History

2014-11-19 13:23:40 +05:30
[package]
2014-12-26 05:30:03 +05:30
name = "clippy"
2021-01-02 16:26:10 +01:00
version = "0.1.51"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
2015-08-20 08:59:07 +02:00
"Andre Bogus <bogusandre@gmail.com>",
2016-02-13 02:59:39 +05:30
"Georg Brandl <georg@python.org>",
2016-06-25 15:05:29 +02:00
"Martin Carton <cartonmartin@gmail.com>",
"Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
]
2015-05-09 15:22:22 +05:30
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/rust-lang/rust-clippy"
2015-05-09 15:22:22 +05:30
readme = "README.md"
license = "MIT OR Apache-2.0"
2015-05-09 15:22:22 +05:30
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 04:43:56 +05:30
2016-02-17 18:16:29 +01:00
[[bin]]
name = "cargo-clippy"
test = false
path = "src/main.rs"
2014-12-25 04:43:56 +05:30
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
2020-10-16 14:23:17 +02:00
semver = "0.11"
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
tempfile = { version = "3.1.0", optional = true }
2015-05-09 15:19:12 +05:30
[dev-dependencies]
2020-10-16 22:11:37 +02:00
cargo_metadata = "0.12"
compiletest_rs = { version = "0.5.0", features = ["tmp"] }
tester = "0.7"
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
serde = { version = "1.0", features = ["derive"] }
derive-new = "0.5"
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 20:23:11 +05:30
[features]
2019-07-15 07:35:02 +02:00
deny-warnings = []
2020-03-13 18:22:51 -07:00
integration = ["tempfile"]
internal-lints = ["clippy_lints/internal-lints"]