From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/tools/clippy/Cargo.toml | 67 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/tools/clippy/Cargo.toml (limited to 'src/tools/clippy/Cargo.toml') diff --git a/src/tools/clippy/Cargo.toml b/src/tools/clippy/Cargo.toml new file mode 100644 index 000000000..1c875c3ad --- /dev/null +++ b/src/tools/clippy/Cargo.toml @@ -0,0 +1,67 @@ +[package] +name = "clippy" +version = "0.1.64" +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"] +categories = ["development-tools", "development-tools::cargo-plugins"] +build = "build.rs" +edition = "2021" +publish = false + +[[bin]] +name = "cargo-clippy" +test = false +path = "src/main.rs" + +[[bin]] +name = "clippy-driver" +path = "src/driver.rs" + +[dependencies] +clippy_lints = { path = "clippy_lints" } +semver = "1.0" +rustc_tools_util = { path = "rustc_tools_util" } +tempfile = { version = "3.2", optional = true } +termize = "0.1" + +[dev-dependencies] +compiletest_rs = { version = "0.8", features = ["tmp"] } +tester = "0.9" +regex = "1.5" +toml = "0.5" +walkdir = "2.3" +# This is used by the `collect-metadata` alias. +filetime = "0.2" + +# 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" + +# UI test dependencies +clippy_utils = { path = "clippy_utils" } +derive-new = "0.5" +if_chain = "1.0" +itertools = "0.10.1" +quote = "1.0" +serde = { version = "1.0.125", features = ["derive"] } +syn = { version = "1.0", features = ["full"] } +futures = "0.3" +parking_lot = "0.12" +tokio = { version = "1", features = ["io-util"] } +rustc-semver = "1.1" + +[build-dependencies] +rustc_tools_util = { version = "0.2", path = "rustc_tools_util" } + +[features] +deny-warnings = ["clippy_lints/deny-warnings"] +integration = ["tempfile"] +internal = ["clippy_lints/internal", "tempfile"] + +[package.metadata.rust-analyzer] +# This package uses #[feature(rustc_private)] +rustc_private = true -- cgit v1.2.3