deps: update cargo_metadata from 0.8.0 to 0.9.0

This commit is contained in:
Matthias Krüger 2019-10-23 17:30:24 +02:00
parent 9a2e500928
commit b5f73dad90
3 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ semver = "0.9"
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"} rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
[dev-dependencies] [dev-dependencies]
cargo_metadata = "0.8.0" cargo_metadata = "0.9.0"
compiletest_rs = { version = "0.3.24", features = ["tmp"] } compiletest_rs = { version = "0.3.24", features = ["tmp"] }
lazy_static = "1.0" lazy_static = "1.0"
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" } clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }

View file

@ -17,7 +17,7 @@ keywords = ["clippy", "lint", "plugin"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cargo_metadata = "0.8.0" cargo_metadata = "0.9.0"
itertools = "0.8" itertools = "0.8"
lazy_static = "1.0.2" lazy_static = "1.0.2"
matches = "0.1.7" matches = "0.1.7"

View file

@ -86,7 +86,7 @@ impl EarlyLintPass for CargoCommonMetadata {
missing_warning(cx, &package, "package.repository"); missing_warning(cx, &package, "package.repository");
} }
if is_empty_str(&package.readme) { if is_empty_path(&package.readme) {
missing_warning(cx, &package, "package.readme"); missing_warning(cx, &package, "package.readme");
} }