X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=60200a88b85829b6b7cf883829791d7ebc626ed2;hb=8a2d0f255d623390c9495dec1c9e5d22bc895e5d;hp=f68251adb5eab97f38ad1993c09d23615e31abeb;hpb=5be4e71262587c0b04ead0f629d2a74858fe25a6;p=rust.git diff --git a/Cargo.toml b/Cargo.toml index f68251adb5e..60200a88b85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,32 +1,16 @@ [package] name = "clippy" -version = "0.0.212" -authors = [ - "Manish Goregaokar ", - "Andre Bogus ", - "Georg Brandl ", - "Martin Carton ", - "Oliver Schneider " -] +version = "0.1.66" 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/Apache-2.0" +license = "MIT OR Apache-2.0" keywords = ["clippy", "lint", "plugin"] categories = ["development-tools", "development-tools::cargo-plugins"] build = "build.rs" -edition = "2018" +edition = "2021" publish = false -[badges] -travis-ci = { repository = "rust-lang/rust-clippy" } -appveyor = { repository = "rust-lang/rust-clippy" } - -[lib] -name = "clippy" -plugin = true -test = false - [[bin]] name = "cargo-clippy" test = false @@ -37,28 +21,47 @@ name = "clippy-driver" path = "src/driver.rs" [dependencies] -# begin automatic update -clippy_lints = { version = "0.0.212", path = "clippy_lints" } -# end automatic update -regex = "1" -semver = "0.9" -rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"} +clippy_lints = { path = "clippy_lints" } +semver = "1.0" +rustc_tools_util = "0.2.1" +tempfile = { version = "3.2", optional = true } +termize = "0.1" [dev-dependencies] -cargo_metadata = "0.8.0" -compiletest_rs = { version = "0.3.22", features = ["tmp"] } -lazy_static = "1.0" -clippy-mini-macro-test = { version = "0.2", path = "mini-macro" } -serde = { version = "1.0", features = ["derive"] } -derive-new = "0.5" +compiletest_rs = { version = "0.9", 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.0" +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.0", path = "rustc_tools_util"} +rustc_tools_util = "0.2.1" [features] -debugging = [] +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