mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
chore(deps): update cargo.lock (#8229)
Co-authored-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
This commit is contained in:
parent
333f811e9c
commit
9380b87755
@ -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
466
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -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"
|
||||
|
||||
@ -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(())
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user