Skip to content

Commit

Permalink
chore(deps): Update Rust crate cargo_metadata to 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and epage committed Jan 2, 2025
1 parent bd084c2 commit 7ec9ff0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
16 changes: 9 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ vendored-libgit2 = ["git2/vendored-libgit2"]
vendored-openssl = ["git2/vendored-openssl"]

[dependencies]
cargo_metadata = "0.18"
cargo_metadata = "0.19"
# Use this with default-features set to "true" (implicitly) so that reqwest,
# a transitive dependency, is compiled with support for both webpki
# certificates AND native certificates. We want support for both to be
Expand All @@ -150,7 +150,7 @@ ignore = "0.4"
itertools = "0.14"
once_cell = "1.19.0"
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
clap-cargo = { version = "0.14.0", features = ["cargo_metadata"] }
clap-cargo = { version = "0.15.0", features = ["cargo_metadata"] }
log = "0.4"
env_logger = "0.11"
globset = { version = "0.4.14", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/steps/plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl PackageRelease {
.targets
.iter()
.flat_map(|t| t.kind.iter())
.any(|k| k == "bin");
.any(|k| *k == cargo_metadata::TargetKind::Bin);
let mut package_content = cargo::package_content(&manifest_path)?;
if bin {
// When publishing bins, the lock file is listed as relative to the package root, so
Expand Down

0 comments on commit 7ec9ff0

Please sign in to comment.