mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
deps: update cargo_metadata from 0.8.0 to 0.9.0
This commit is contained in:
parent
9a2e500928
commit
b5f73dad90
3 changed files with 3 additions and 3 deletions
|
@ -45,7 +45,7 @@ semver = "0.9"
|
|||
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
|
||||
|
||||
[dev-dependencies]
|
||||
cargo_metadata = "0.8.0"
|
||||
cargo_metadata = "0.9.0"
|
||||
compiletest_rs = { version = "0.3.24", features = ["tmp"] }
|
||||
lazy_static = "1.0"
|
||||
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
|
||||
|
|
|
@ -17,7 +17,7 @@ keywords = ["clippy", "lint", "plugin"]
|
|||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
cargo_metadata = "0.8.0"
|
||||
cargo_metadata = "0.9.0"
|
||||
itertools = "0.8"
|
||||
lazy_static = "1.0.2"
|
||||
matches = "0.1.7"
|
||||
|
|
|
@ -86,7 +86,7 @@ impl EarlyLintPass for CargoCommonMetadata {
|
|||
missing_warning(cx, &package, "package.repository");
|
||||
}
|
||||
|
||||
if is_empty_str(&package.readme) {
|
||||
if is_empty_path(&package.readme) {
|
||||
missing_warning(cx, &package, "package.readme");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue