Skip to content

Commit 82dead0

Browse files
authored
Bump wgpu-core/hal/types & naga versions to match latest released patch versions (#5404)
1 parent 73738af commit 82dead0

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,27 +45,27 @@ keywords = ["graphics"]
4545
license = "MIT OR Apache-2.0"
4646
homepage = "https://wgpu.rs/"
4747
repository = "https://github.com/gfx-rs/wgpu"
48-
version = "0.19.0"
48+
version = "0.19.3"
4949
authors = ["gfx-rs developers"]
5050

5151
[workspace.dependencies.wgc]
5252
package = "wgpu-core"
5353
path = "./wgpu-core"
54-
version = "0.19.0"
54+
version = "0.19.3"
5555

5656
[workspace.dependencies.wgt]
5757
package = "wgpu-types"
5858
path = "./wgpu-types"
59-
version = "0.19.0"
59+
version = "0.19.2"
6060

6161
[workspace.dependencies.hal]
6262
package = "wgpu-hal"
6363
path = "./wgpu-hal"
64-
version = "0.19.0"
64+
version = "0.19.3"
6565

6666
[workspace.dependencies.naga]
6767
path = "./naga"
68-
version = "0.19.0"
68+
version = "0.19.2"
6969

7070
[workspace.dependencies]
7171
anyhow = "1.0"
@@ -118,12 +118,12 @@ serde_json = "1.0.115"
118118
smallvec = "1"
119119
static_assertions = "1.1.0"
120120
thiserror = "1"
121-
wgpu = { version = "0.19.0", path = "./wgpu" }
122-
wgpu-core = { version = "0.19.0", path = "./wgpu-core" }
121+
wgpu = { version = "0.19.3", path = "./wgpu" }
122+
wgpu-core = { version = "0.19.3", path = "./wgpu-core" }
123123
wgpu-example = { version = "0.19.0", path = "./examples/common" }
124124
wgpu-macros = { version = "0.19.0", path = "./wgpu-macros" }
125125
wgpu-test = { version = "0.19.0", path = "./tests" }
126-
wgpu-types = { version = "0.19.0", path = "./wgpu-types" }
126+
wgpu-types = { version = "0.19.2", path = "./wgpu-types" }
127127
winit = { version = "0.29", features = ["android-native-activity"] }
128128

129129
# Metal dependencies

naga/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "naga"
3-
version = "0.19.0"
3+
version = "0.19.2"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "Shader translation infrastructure"

wgpu-core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-core"
3-
version = "0.19.0"
3+
version = "0.19.3"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU core logic on wgpu-hal"
@@ -117,17 +117,17 @@ thiserror = "1"
117117

118118
[dependencies.naga]
119119
path = "../naga"
120-
version = "0.19.0"
120+
version = "0.19.2"
121121

122122
[dependencies.wgt]
123123
package = "wgpu-types"
124124
path = "../wgpu-types"
125-
version = "0.19.0"
125+
version = "0.19.2"
126126

127127
[dependencies.hal]
128128
package = "wgpu-hal"
129129
path = "../wgpu-hal"
130-
version = "0.19.0"
130+
version = "0.19.3"
131131
default_features = false
132132

133133
[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]

wgpu-hal/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-hal"
3-
version = "0.19.0"
3+
version = "0.19.3"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU hardware abstraction layer"
@@ -110,7 +110,7 @@ glow = { version = "0.13.1", optional = true }
110110
[dependencies.wgt]
111111
package = "wgpu-types"
112112
path = "../wgpu-types"
113-
version = "0.19.0"
113+
version = "0.19.2"
114114

115115
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
116116
# backend: Vulkan
@@ -178,15 +178,15 @@ ndk-sys = { version = "0.5.0", optional = true }
178178

179179
[dependencies.naga]
180180
path = "../naga"
181-
version = "0.19.0"
181+
version = "0.19.2"
182182

183183
[build-dependencies]
184184
cfg_aliases.workspace = true
185185

186186
# DEV dependencies
187187
[dev-dependencies.naga]
188188
path = "../naga"
189-
version = "0.19.0"
189+
version = "0.19.2"
190190
features = ["wgsl-in"]
191191

192192
[dev-dependencies]

wgpu-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-types"
3-
version = "0.19.0"
3+
version = "0.19.2"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU types"

0 commit comments

Comments
 (0)