Upgrade deps#30
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the crate for newer graphics dependencies, mainly to support wgpu 29 and glam 0.32, while also exposing wesl from the public API. In the codebase, this mostly affects GPU initialization paths, compute pipeline setup, and dependency metadata.
Changes:
- Bump core dependencies in
Cargo.toml/Cargo.lock, especiallywgpu,glam,bytemuck, andoneshot. - Adjust
wgpusetup code in tests/examples and update compute pipeline layout creation for the new API. - Re-export
weslfrom the crate root and refresh the checked-in coverage badge.
Reviewed changes
Copilot reviewed 6 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
tests/common/test_context.rs |
Updates test GPU instance creation for the new wgpu descriptor API. |
src/lib.rs |
Adds a public re-export for wesl. |
src/compute_bundle.rs |
Adapts pipeline layout creation to the wgpu 29 bind-group-layout API. |
examples/read_spz.rs |
Updates example instance creation to the new wgpu API. |
examples/read_ply.rs |
Updates example instance creation to the new wgpu API. |
coverage/badge.json |
Changes the displayed coverage percentage. |
Cargo.toml |
Bumps direct dependency versions and adjusts oneshot features. |
Cargo.lock |
Refreshes the lockfile for the dependency upgrades. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
wgputo 0.29 andglamto 0.32weslin addition to the existingwgpuandglam