mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-26 20:40:44 +00:00
build(deps): bump cargo_metadata from 0.19.2 to 0.20.0 (#1887)
Bumps [cargo_metadata](https://github.com/oli-obk/cargo_metadata) from 0.19.2 to 0.20.0. <details> <summary>Commits</summary> <ul> <li><a href="fa60b98bc8
"><code>fa60b98</code></a> Merge pull request <a href="https://redirect.github.com/oli-obk/cargo_metadata/issues/293">#293</a> from oli-obk/push-orzyoroqpxpu</li> <li><a href="61345fb320
"><code>61345fb</code></a> required features have a different format from normal feature names</li> <li><a href="19f42039ee
"><code>19f4203</code></a> Bump MSRV</li> <li><a href="6861466d25
"><code>6861466</code></a> Fix build on with <code>builder</code> feature</li> <li><a href="a21b7a1d01
"><code>a21b7a1</code></a> Update examples</li> <li><a href="5895dd6b15
"><code>5895dd6</code></a> Merge pull request <a href="https://redirect.github.com/oli-obk/cargo_metadata/issues/261">#261</a> from zetanumbers/docsrs-features</li> <li><a href="e3373d02e7
"><code>e3373d0</code></a> refactor: NodeDep::name: PackageName</li> <li><a href="2f0142d684
"><code>2f0142d</code></a> Merge pull request <a href="https://redirect.github.com/oli-obk/cargo_metadata/issues/291">#291</a> from gear-tech/fix-cross-compilation</li> <li><a href="95d4a360fc
"><code>95d4a36</code></a> update changelog</li> <li><a href="9cd40e6363
"><code>9cd40e6</code></a> append docs</li> <li>Additional commits viewable in <a href="https://github.com/oli-obk/cargo_metadata/compare/0.19.2...0.20.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Josh McKinney <joshka@users.noreply.github.com>
This commit is contained in:
parent
0951da52f9
commit
9f9ec332b0
576
Cargo.lock
generated
576
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@ publish = false
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
cargo_metadata = "0.19.2"
|
||||
cargo_metadata = "0.20"
|
||||
clap = { version = "4.5.40", features = ["derive"] }
|
||||
clap-cargo = { version = "0.15.1", features = ["cargo_metadata"] }
|
||||
clap-verbosity-flag = { version = "3.0.3", default-features = false, features = ["tracing"] }
|
||||
|
@ -58,7 +58,7 @@ fn workspace_libs() -> Result<Vec<String>> {
|
||||
.workspace_packages()
|
||||
.iter()
|
||||
.filter(|v| v.targets.iter().any(|t| t.kind.contains(&TargetKind::Lib)))
|
||||
.map(|v| v.name.clone())
|
||||
.map(|v| v.name.to_string())
|
||||
.collect();
|
||||
Ok(packages)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user