Auto merge of #12610 - rust-lang:renovate/cargo_metadata-0.x, r=weihanglo

chore(deps): update rust crate cargo_metadata to 0.17.0

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [cargo_metadata](https://togithub.com/oli-obk/cargo_metadata) | workspace.dependencies | minor | `0.14.0` -> `0.17.0` |

---

### Release Notes

<details>
<summary>oli-obk/cargo_metadata (cargo_metadata)</summary>

### [`v0.17.0`](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.5...0.17.0)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.5...0.17.0)

### [`v0.15.5`](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.4...0.15.5)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.4...0.15.5)

### [`v0.15.4`](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.3...0.15.4)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.3...0.15.4)

### [`v0.15.3`](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.2...0.15.3)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.2...0.15.3)

### [`v0.15.2`](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.1...0.15.2)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.1...0.15.2)

### [`v0.15.1`](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.0...0.15.1)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.15.0...0.15.1)

### [`v0.15.0`](https://togithub.com/oli-obk/cargo_metadata/blob/HEAD/CHANGELOG.md#0150---2022-06-22)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.3...0.15.0)

##### Added

-   Re-exported `BuildMetadata` and `Prerelease` from `semver` crate.
-   Added `workspace_packages` function.
-   Added `Edition` enum to better parse edition field.
-   Added `rust-version` field to Cargo manifest.

##### Changed

-   Bumped msrv from `1.40.0` to `1.42.0`.

##### Internal Changes

-   Updated `derive_builder` to the latest version.
-   Made use of `matches!` macros where possible.
-   Fixed some tests

### [`v0.14.3`](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.2...0.14.3)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.2...0.14.3)

### [`v0.14.2`](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.1...0.14.2)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.1...0.14.2)

### [`v0.14.1`](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.0...0.14.1)

[Compare Source](https://togithub.com/oli-obk/cargo_metadata/compare/0.14.0...0.14.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/rust-lang/cargo).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi42OC4xIiwidXBkYXRlZEluVmVyIjoiMzYuNjguMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
This commit is contained in:
bors 2023-09-01 06:58:22 +00:00
commit c27fe5f12f
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View file

@ -448,15 +448,16 @@ dependencies = [
[[package]]
name = "cargo_metadata"
version = "0.14.2"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
checksum = "e7daec1a2a2129eeba1644b220b4647ec537b0b5d4bfd6876fcc5a540056b592"
dependencies = [
"camino",
"cargo-platform 0.1.2",
"semver",
"serde",
"serde_json",
"thiserror",
]
[[package]]

View file

@ -28,7 +28,7 @@ cargo-platform = { path = "crates/cargo-platform", version = "0.1.4" }
cargo-test-macro = { path = "crates/cargo-test-macro" }
cargo-test-support = { path = "crates/cargo-test-support" }
cargo-util = { version = "0.2.6", path = "crates/cargo-util" }
cargo_metadata = "0.14.0"
cargo_metadata = "0.17.0"
clap = "4.3.23"
core-foundation = { version = "0.9.3", features = ["mac_os_10_7_support"] }
crates-io = { version = "0.39.0", path = "crates/crates-io" }