rust/clippy_lints/Cargo.toml

39 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "clippy_lints"
# begin automatic update
2021-03-25 18:48:48 +01:00
version = "0.1.53"
# end automatic update
authors = ["The Rust Clippy Developers"]
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
repository = "https://github.com/rust-lang/rust-clippy"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["clippy", "lint", "plugin"]
2018-05-30 10:18:52 +02:00
edition = "2018"
[dependencies]
cargo_metadata = "0.12"
2021-02-17 18:42:21 +01:00
clippy_utils = { path = "../clippy_utils" }
2019-11-06 10:46:32 +01:00
if_chain = "1.0.0"
itertools = "0.9"
pulldown-cmark = { version = "0.8", default-features = false }
quine-mc_cluskey = "0.2.2"
regex-syntax = "0.6"
serde = { version = "1.0", features = ["derive"] }
toml = "0.5.3"
unicode-normalization = "0.1"
semver = "0.11"
rustc-semver = "1.1.0"
2019-11-06 10:46:32 +01:00
# NOTE: cargo requires serde feat in its url dep
# see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
url = { version = "2.1.0", features = ["serde"] }
[features]
2019-11-25 17:23:07 +01:00
deny-warnings = []
# build clippy with internal lints enabled, off by default
2021-02-13 15:04:50 +01:00
internal-lints = ["clippy_utils/internal-lints"]
[package.metadata.rust-analyzer]
# This crate uses #[feature(rustc_private)]
rustc_private = true