From 5a24e2474d0aaae1deec040d398fd5cadae4a62c Mon Sep 17 00:00:00 2001 From: Alphyr <47725341+a1phyr@users.noreply.github.com> Date: Fri, 29 Aug 2025 18:31:31 +0200 Subject: [PATCH] wgpu-types: Do not depend on "bitflags/serde" if feature "serde" is not enabled (#8170) --- wgpu-types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-types/Cargo.toml b/wgpu-types/Cargo.toml index 921f31959..3aaadb9db 100644 --- a/wgpu-types/Cargo.toml +++ b/wgpu-types/Cargo.toml @@ -49,7 +49,7 @@ trace = ["std"] web = ["dep:js-sys", "dep:web-sys"] [dependencies] -bitflags = { workspace = true, features = ["serde"] } +bitflags.workspace = true bytemuck = { workspace = true, features = ["derive"] } log.workspace = true thiserror = { workspace = true, optional = true }