Skip to content

Commit 562bfed

Browse files
Bump the wgpu group with 3 updates
Updates the requirements on [wgpu-types](https://github.com/gfx-rs/wgpu), [wgpu](https://github.com/gfx-rs/wgpu) and [naga](https://github.com/gfx-rs/wgpu) to permit the latest version. Updates `wgpu-types` to 28.0.0 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](gfx-rs/wgpu@wgpu-types-v27.0.0...v28.0.0) Updates `wgpu` to 28.0.0 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](gfx-rs/wgpu@wgpu-v27.0.0...v28.0.0) Updates `naga` to 28.0.0 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](gfx-rs/wgpu@naga-v27.0.0...v28.0.0) --- updated-dependencies: - dependency-name: wgpu-types dependency-version: 28.0.0 dependency-type: direct:production dependency-group: wgpu - dependency-name: wgpu dependency-version: 28.0.0 dependency-type: direct:production dependency-group: wgpu - dependency-name: naga dependency-version: 28.0.0 dependency-type: direct:production dependency-group: wgpu ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d6a4add commit 562bfed

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

crates/bevy_camera/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bevy_color = { path = "../bevy_color", version = "0.19.0-dev", features = [
2828
bevy_window = { path = "../bevy_window", version = "0.19.0-dev" }
2929

3030
# other
31-
wgpu-types = { version = "27", default-features = false }
31+
wgpu-types = { version = "28", default-features = false }
3232
serde = { version = "1", default-features = false, features = ["derive"] }
3333
thiserror = { version = "2", default-features = false }
3434
downcast-rs = { version = "2", default-features = false, features = ["std"] }

crates/bevy_color/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = { version = "1.0", features = [
2020
], default-features = false, optional = true }
2121
thiserror = { version = "2", default-features = false }
2222
derive_more = { version = "2", default-features = false, features = ["from"] }
23-
wgpu-types = { version = "27", default-features = false, optional = true }
23+
wgpu-types = { version = "28", default-features = false, optional = true }
2424
encase = { version = "0.12", default-features = false, optional = true }
2525

2626
[features]

crates/bevy_image/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ image = { version = "0.25.2", default-features = false }
7070
# misc
7171
bitflags = { version = "2.3", features = ["serde"] }
7272
bytemuck = { version = "1.5" }
73-
wgpu-types = { version = "27", default-features = false }
73+
wgpu-types = { version = "28", default-features = false }
7474
serde = { version = "1", features = ["derive"] }
7575
thiserror = { version = "2", default-features = false }
7676
futures-lite = "2.0.1"

crates/bevy_light/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bevy_color = { path = "../bevy_color", version = "0.19.0-dev", features = [
2727

2828
# other
2929
tracing = { version = "0.1", default-features = false }
30-
wgpu-types = { version = "27", default-features = false }
30+
wgpu-types = { version = "28", default-features = false }
3131
half = "2.7.1"
3232

3333
[features]

crates/bevy_material/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.19.0-dev" }
2323
encase = "0.12"
2424
tracing = { version = "0.1", default-features = false, features = ["std"] }
2525
thiserror = { version = "2", default-features = false }
26-
wgpu-types = { version = "27", default-features = false }
26+
wgpu-types = { version = "28", default-features = false }
2727
variadics_please = "1.1"
2828
smallvec = { version = "1", default-features = false }
2929

crates/bevy_mesh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.19.0-dev", default-fea
2727
# other
2828
bitflags = { version = "2.3", features = ["serde"] }
2929
bytemuck = { version = "1.5" }
30-
wgpu-types = { version = "27", default-features = false }
30+
wgpu-types = { version = "28", default-features = false }
3131
serde = { version = "1", default-features = false, features = [
3232
"derive",
3333
], optional = true }

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ uuid = { version = "1.13.1", default-features = false, optional = true, features
129129
"serde",
130130
] }
131131
variadics_please = "1.1"
132-
wgpu-types = { version = "27", features = [
132+
wgpu-types = { version = "28", features = [
133133
"serde",
134134
], optional = true, default-features = false }
135135

crates/bevy_render/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ image = { version = "0.25.2", default-features = false }
8787
# It is enabled for now to avoid having to do a significant overhaul of the renderer just for wasm.
8888
# When the 'atomics' feature is enabled `fragile-send-sync-non-atomic` does nothing
8989
# and Bevy instead wraps `wgpu` types to verify they are not used off their origin thread.
90-
wgpu = { version = "27", default-features = false, features = [
90+
wgpu = { version = "28", default-features = false, features = [
9191
"wgsl",
9292
"dx12",
9393
"metal",
9494
"vulkan",
9595
"naga-ir",
9696
"fragile-send-sync-non-atomic-wasm",
9797
] }
98-
naga = { version = "27", features = ["wgsl-in"] }
98+
naga = { version = "28", features = ["wgsl-in"] }
9999
bytemuck = { version = "1.5", features = ["derive", "must_cast"] }
100100
downcast-rs = { version = "2", default-features = false, features = ["std"] }
101101
thiserror = { version = "2", default-features = false }

crates/bevy_shader/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ bevy_platform = { path = "../bevy_platform", version = "0.19.0-dev" }
1616
bevy_utils = { path = "../bevy_utils", version = "0.19.0-dev" }
1717

1818
# other
19-
wgpu-types = { version = "27", default-features = false }
20-
naga = { version = "27", features = ["wgsl-in"] }
19+
wgpu-types = { version = "28", default-features = false }
20+
naga = { version = "28", features = ["wgsl-in"] }
2121
serde = { version = "1", features = ["derive"] }
2222
thiserror = { version = "2", default-features = false }
2323
wesl = { version = "0.3.1", optional = true }

crates/bevy_sprite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bevy_log = { path = "../bevy_log", version = "0.19.0-dev" }
3333
# other
3434
radsort = "0.1"
3535
tracing = { version = "0.1", default-features = false, features = ["std"] }
36-
wgpu-types = { version = "27", default-features = false }
36+
wgpu-types = { version = "28", default-features = false }
3737

3838
[dev-dependencies]
3939
approx = "0.5.1"

0 commit comments

Comments
 (0)