X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2FCargo.toml;h=dcadd012a44d35a084f3f5924814904fcfa44ff2;hb=6bbf16660bf218b16d64d812b4c3d916cf827a88;hp=6fbd6401ef3ebe00ba8a516912325564c7cc8589;hpb=5ccf727344916695e52c9f708b405b5bd179e1e7;p=rust.git diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 6fbd6401ef3..dcadd012a44 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy_lints" -version = "0.1.66" +version = "0.1.67" description = "A bunch of helpful lints to avoid common pitfalls in Rust" repository = "https://github.com/rust-lang/rust-clippy" readme = "README.md" @@ -11,6 +11,7 @@ edition = "2021" [dependencies] cargo_metadata = "0.14" clippy_utils = { path = "../clippy_utils" } +declare_clippy_lint = { path = "../declare_clippy_lint" } if_chain = "1.0" itertools = "0.10.1" pulldown-cmark = { version = "0.9", default-features = false } @@ -18,7 +19,7 @@ quine-mc_cluskey = "0.2" regex-syntax = "0.6" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", optional = true } -tempfile = { version = "3.2", optional = true } +tempfile = { version = "3.3.0", optional = true } toml = "0.5" unicode-normalization = "0.1" unicode-script = { version = "0.5", default-features = false }