chore(deps): update cargo.lock (#8229)

Co-authored-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
This commit is contained in:
renovate[bot] 2025-10-01 22:42:49 +00:00 committed by GitHub
parent 333f811e9c
commit 9380b87755
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 191 additions and 290 deletions

View File

@ -15,6 +15,9 @@ skip = [
# Deno uses an old version
{ name = "which", version = "6.0.3" },
# Winit uses an old version
{ name = "windows-sys", version = "0.52.0" },
# Loom uses a new windows version
{ name = "windows", version = "0.61.1" },
{ name = "windows-core", version = "0.61.2" },
@ -23,9 +26,6 @@ skip = [
{ name = "windows-result", version = "0.3.4" },
{ name = "windows-strings", version = "0.4.2" },
# cargo-metadata uses old version. Only used for infrastructure.
{ name = "toml", version = "0.8.23" },
{ name = "ordered-float", version = "2.10.1" },
# bindgen (used by deno) uses old version
{ name = "itertools", version = "0.13.0" },
# Deno uses an old version
@ -53,7 +53,6 @@ allow = [
"MPL-2.0",
"MIT",
"MIT-0",
"Unicode-DFS-2016",
"Unicode-3.0",
"Zlib",
]
@ -68,4 +67,4 @@ unknown-git = "deny"
required-git-spec = "rev"
[sources.allow-org]
github = ["gfx-rs"]
github = []

466
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -106,7 +106,7 @@ bytemuck = { version = "1.22", features = [
"extern_crate_alloc",
"min_const_generics",
] }
cargo_metadata = "0.22"
cargo_metadata = "0.23"
cfg_aliases = "0.2.1"
cfg-if = "1"
criterion = "0.7"

View File

@ -30,7 +30,7 @@ pub(crate) fn validate(cmd: ValidateSubcommand) -> anyhow::Result<()> {
Ok(result) => result,
Err(payload) => Err(match payload.downcast_ref::<&str>() {
Some(message) => {
anyhow::anyhow!("Validation job thread panicked: {}", message)
anyhow::anyhow!("Validation job thread panicked: {message}")
}
None => anyhow::anyhow!("Validation job thread panicked"),
}),
@ -60,7 +60,7 @@ pub(crate) fn validate(cmd: ValidateSubcommand) -> anyhow::Result<()> {
);
if let Err(error) = enqueuing_thread.join().unwrap() {
bail!("Error enqueuing jobs:\n{:#}", error);
bail!("Error enqueuing jobs:\n{error:#}");
}
Ok(())