Skip to content

Commit 1bce252

Browse files
committed
Auto merge of #4718 - matthiaskrgr:cargo_metadata, r=phansch
deps: update cargo_metadata from 0.8.0 to 0.9.0 changelog: none
2 parents 9a2e500 + b5f73da commit 1bce252

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ semver = "0.9"
4545
rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
4646

4747
[dev-dependencies]
48-
cargo_metadata = "0.8.0"
48+
cargo_metadata = "0.9.0"
4949
compiletest_rs = { version = "0.3.24", features = ["tmp"] }
5050
lazy_static = "1.0"
5151
clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = ["clippy", "lint", "plugin"]
1717
edition = "2018"
1818

1919
[dependencies]
20-
cargo_metadata = "0.8.0"
20+
cargo_metadata = "0.9.0"
2121
itertools = "0.8"
2222
lazy_static = "1.0.2"
2323
matches = "0.1.7"

clippy_lints/src/cargo_common_metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl EarlyLintPass for CargoCommonMetadata {
8686
missing_warning(cx, &package, "package.repository");
8787
}
8888

89-
if is_empty_str(&package.readme) {
89+
if is_empty_path(&package.readme) {
9090
missing_warning(cx, &package, "package.readme");
9191
}
9292

0 commit comments

Comments
 (0)