Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ allow-wildcard-paths = true
ignore = [
# `paste` crate is no longer maintained https://rustsec.org/advisories/RUSTSEC-2024-0436
# It's a dependency of `metal` (which is to be replaced with `objc2-metal`), and a
# transitive dependency of `deno`. https://github.com/gfx-rs/wgpu/issues/7873
# transitive dependency of `deno`. https://github.com/gfx-rs/wgpu/issues/7873.
# It is also a dependency of wgpu-test
"RUSTSEC-2024-0436",
# `unic-*` crates are no longer maintained https://rustsec.org/advisories/RUSTSEC-2025-0100
# These are used via `deno`. https://github.com/gfx-rs/wgpu/issues/8393
Expand Down
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ ron = "0.12"
# (using default-features = false to support no-std build, avoiding any extra features that may require std::collections)
rustc-hash = { version = "1.1", default-features = false }
serde_json = "1.0.143"
serde = { version = "1.0.219", default-features = false }
serde = { version = "1.0.228", default-features = false }
shell-words = "1"
smallvec = "1.14"
spirv = { version = "0.3", git = "https://github.com/gfx-rs/rspirv", rev = "89ce4d0e64c91b0635f617409dc57cb031749a39" }
Expand Down
3 changes: 2 additions & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ wgpu = { workspace = true, features = ["noop"] }
wgpu-core = { workspace = true, features = ["trace"] }
wgpu-hal = { workspace = true, features = ["validation_canary"] }
wgpu-macros.workspace = true
wgpu-types.workspace = true
wgpu-types = { workspace = true, features = ["unstable-testing"] }

anyhow.workspace = true
arrayvec.workspace = true
Expand All @@ -57,6 +57,7 @@ ctor.workspace = true
futures-lite.workspace = true
libtest-mimic.workspace = true
log.workspace = true
paste = "^1.0.7"
png.workspace = true
pollster.workspace = true
profiling.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions tests/tests/wgpu-gpu/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// NOTE: Deeply nested types in `./texture_format/mod.rs` via [`wgpu_types::AllEnumValues`] require
// this.
#![recursion_limit = "256"]

mod regression {
pub mod issue_3349;
pub mod issue_3457;
Expand Down Expand Up @@ -64,6 +68,7 @@ mod subgroup_operations;
mod texture_binding;
mod texture_blit;
mod texture_bounds;
mod texture_format;
mod texture_view_creation;
mod timestamp_normalization;
mod timestamp_query;
Expand Down Expand Up @@ -140,6 +145,7 @@ fn all_tests() -> Vec<wgpu_test::GpuTestInitializer> {
texture_binding::all_tests(&mut tests);
texture_blit::all_tests(&mut tests);
texture_bounds::all_tests(&mut tests);
texture_format::all_tests(&mut tests);
texture_view_creation::all_tests(&mut tests);
timestamp_normalization::all_tests(&mut tests);
timestamp_query::all_tests(&mut tests);
Expand Down
Loading
Loading