Skip to content

Commit d9a5627

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 60970fc commit d9a5627

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
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.18.0-dev", features = [
2828
bevy_window = { path = "../bevy_window", version = "0.18.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_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.18.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
@@ -85,15 +85,15 @@ image = { version = "0.25.2", default-features = false }
8585
# It is enabled for now to avoid having to do a significant overhaul of the renderer just for wasm.
8686
# When the 'atomics' feature is enabled `fragile-send-sync-non-atomic` does nothing
8787
# and Bevy instead wraps `wgpu` types to verify they are not used off their origin thread.
88-
wgpu = { version = "27", default-features = false, features = [
88+
wgpu = { version = "28", default-features = false, features = [
8989
"wgsl",
9090
"dx12",
9191
"metal",
9292
"vulkan",
9393
"naga-ir",
9494
"fragile-send-sync-non-atomic-wasm",
9595
] }
96-
naga = { version = "27", features = ["wgsl-in"] }
96+
naga = { version = "28", features = ["wgsl-in"] }
9797
bytemuck = { version = "1.5", features = ["derive", "must_cast"] }
9898
downcast-rs = { version = "2", default-features = false, features = ["std"] }
9999
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
@@ -15,8 +15,8 @@ bevy_reflect = { path = "../bevy_reflect", version = "0.18.0-dev" }
1515
bevy_platform = { path = "../bevy_platform", version = "0.18.0-dev" }
1616

1717
# other
18-
wgpu-types = { version = "27", default-features = false }
19-
naga = { version = "27", features = ["wgsl-in"] }
18+
wgpu-types = { version = "28", default-features = false }
19+
naga = { version = "28", features = ["wgsl-in"] }
2020
serde = { version = "1", features = ["derive"] }
2121
thiserror = { version = "2", default-features = false }
2222
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
@@ -32,7 +32,7 @@ bevy_text = { path = "../bevy_text", version = "0.18.0-dev", optional = true }
3232
# other
3333
radsort = "0.1"
3434
tracing = { version = "0.1", default-features = false, features = ["std"] }
35-
wgpu-types = { version = "27", default-features = false }
35+
wgpu-types = { version = "28", default-features = false }
3636

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

crates/bevy_text/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.18.0-dev", default-fea
2929
] }
3030

3131
# other
32-
wgpu-types = { version = "27", default-features = false }
32+
wgpu-types = { version = "28", default-features = false }
3333
cosmic-text = { version = "0.15", features = ["shape-run-cache"] }
3434
thiserror = { version = "2", default-features = false }
3535
serde = { version = "1", features = ["derive"] }

crates/bevy_winit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ bevy_asset = { path = "../bevy_asset", version = "0.18.0-dev", optional = true }
5757
## used by custom_cursor
5858
bevy_image = { path = "../bevy_image", version = "0.18.0-dev", optional = true }
5959
## used by custom_cursor
60-
wgpu-types = { version = "27", optional = true }
60+
wgpu-types = { version = "28", optional = true }
6161
## used by custom_cursor
6262
bytemuck = { version = "1.5", optional = true }
6363

0 commit comments

Comments
 (0)