diff options
| author | bors <bors@rust-lang.org> | 2020-05-31 17:31:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-05-31 17:31:29 +0000 |
| commit | fcc3ed2cdc442b4d3b8f1cb2be5ef7686ff89b3c (patch) | |
| tree | a45cadd4d6aa856d55d42e0e77d7ec7c9e0885e1 | |
| parent | 8aa8f425565975e283461dbfdc2c4ac0b4273934 (diff) | |
| parent | 6122612232976c1ac766a5d415265eb3eb30e72c (diff) | |
| download | rust-fcc3ed2cdc442b4d3b8f1cb2be5ef7686ff89b3c.tar.gz rust-fcc3ed2cdc442b4d3b8f1cb2be5ef7686ff89b3c.zip | |
Auto merge of #5669 - mikerite:fix-cargo_metadata-0.9, r=phansch
Increase cargo_metadata version to 0.9.1 `clippy_lints` makes use of `dep_kinds` on `NodeDep` but this was only added in versoin 0.9.1. Compiling with 0.9.0 will fail because of this. changelog: none
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | clippy_lints/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml index 6999b6bd740..836897927b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ tempfile = { version = "3.1.0", optional = true } lazy_static = "1.0" [dev-dependencies] -cargo_metadata = "0.9.0" +cargo_metadata = "0.9.1" compiletest_rs = { version = "0.5.0", features = ["tmp"] } tester = "0.7" lazy_static = "1.0" diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 76baf27fb2d..98391732d18 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["clippy", "lint", "plugin"] edition = "2018" [dependencies] -cargo_metadata = "0.9.0" +cargo_metadata = "0.9.1" if_chain = "1.0.0" itertools = "0.9" lazy_static = "1.0.2" |
