From a71b2005a82669b29eab91e6d3e3492aea3848cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 18:21:52 +0000 Subject: [PATCH] build(deps): bump cargo_metadata from 0.18.1 to 0.19.1 Bumps [cargo_metadata](https://github.com/oli-obk/cargo_metadata) from 0.18.1 to 0.19.1. - [Release notes](https://github.com/oli-obk/cargo_metadata/releases) - [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md) - [Commits](https://github.com/oli-obk/cargo_metadata/compare/0.18.1...0.19.1) --- updated-dependencies: - dependency-name: cargo_metadata dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e54ee7fc..aefd7d22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -631,7 +631,7 @@ dependencies = [ "assert_fs", "bisector", "camino", - "cargo_metadata", + "cargo_metadata 0.19.1", "clap", "clap-cargo", "dirs", @@ -679,6 +679,20 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "cargo_metadata" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8769706aad5d996120af43197bf46ef6ad0fda35216b4505f926a365a232d924" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.3", +] + [[package]] name = "cc" version = "1.2.2" @@ -711,7 +725,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b2ea69cefa96b848b73ad516ad1d59a195cdf9263087d977f648a818c8b43e" dependencies = [ "anstyle", - "cargo_metadata", + "cargo_metadata 0.18.1", "clap", ] @@ -2914,7 +2928,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2990d9ea5967266ea0ccf413a4aa5c42a93dbcfda9cb49a97de6931726b12566" dependencies = [ "anyhow", - "cargo_metadata", + "cargo_metadata 0.18.1", "cfg-if", "regex", "rustc_version", diff --git a/Cargo.toml b/Cargo.toml index 893a5c48..47f297f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ tag-name = "v{{version}}" [dependencies] bisector = "0.4.0" # bisection with a custom comparator camino = "1.1" # utf-8 paths -cargo_metadata = "0.18.1" # resolving Cargo manifest metadata (consider `guppy`!) +cargo_metadata = "0.19.1" # resolving Cargo manifest metadata (consider `guppy`!) clap = { version = "4.5.21", features = ["derive"] } # parse CLI arguments clap-cargo = { version = "0.14.1", features = ["cargo_metadata"] } dirs = "5.0.1" # common directories