Skip to content

Commit 09b6857

Browse files
committed
Add error handling for lockfile API of cargo-gpu-build
1 parent 58b97d9 commit 09b6857

File tree

4 files changed

+178
-102
lines changed

4 files changed

+178
-102
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cargo-gpu-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license.workspace = true
1010
[dependencies]
1111
rustc_codegen_spirv-cache = { path = "../rustc_codegen_spirv-cache" }
1212
spirv-builder.workspace = true
13-
anyhow.workspace = true
13+
thiserror.workspace = true
1414
semver.workspace = true
1515
log.workspace = true
1616

crates/cargo-gpu-build/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
//! to pass the many additional parameters required to configure rustc and our codegen backend,
1313
//! but provide you with a toolchain-agnostic version that you may use from stable rustc.
1414
15-
#![expect(clippy::missing_errors_doc, reason = "temporary allow this")] // TODO: remove this & fix documentation
1615
#![expect(clippy::pub_use, reason = "part of public API")]
1716

1817
pub use rustc_codegen_spirv_cache as spirv_cache;

0 commit comments

Comments
 (0)