Skip to content

Commit

Permalink
Bump wgpu-core/hal/types & naga versions to match latest released pat…
Browse files Browse the repository at this point in the history
…ch versions (#5404)
  • Loading branch information
Wumpf authored Apr 9, 2024
1 parent 73738af commit 82dead0
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 29 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,27 +45,27 @@ keywords = ["graphics"]
license = "MIT OR Apache-2.0"
homepage = "https://wgpu.rs/"
repository = "https://github.com/gfx-rs/wgpu"
version = "0.19.0"
version = "0.19.3"
authors = ["gfx-rs developers"]

[workspace.dependencies.wgc]
package = "wgpu-core"
path = "./wgpu-core"
version = "0.19.0"
version = "0.19.3"

[workspace.dependencies.wgt]
package = "wgpu-types"
path = "./wgpu-types"
version = "0.19.0"
version = "0.19.2"

[workspace.dependencies.hal]
package = "wgpu-hal"
path = "./wgpu-hal"
version = "0.19.0"
version = "0.19.3"

[workspace.dependencies.naga]
path = "./naga"
version = "0.19.0"
version = "0.19.2"

[workspace.dependencies]
anyhow = "1.0"
Expand Down Expand Up @@ -118,12 +118,12 @@ serde_json = "1.0.115"
smallvec = "1"
static_assertions = "1.1.0"
thiserror = "1"
wgpu = { version = "0.19.0", path = "./wgpu" }
wgpu-core = { version = "0.19.0", path = "./wgpu-core" }
wgpu = { version = "0.19.3", path = "./wgpu" }
wgpu-core = { version = "0.19.3", path = "./wgpu-core" }
wgpu-example = { version = "0.19.0", path = "./examples/common" }
wgpu-macros = { version = "0.19.0", path = "./wgpu-macros" }
wgpu-test = { version = "0.19.0", path = "./tests" }
wgpu-types = { version = "0.19.0", path = "./wgpu-types" }
wgpu-types = { version = "0.19.2", path = "./wgpu-types" }
winit = { version = "0.29", features = ["android-native-activity"] }

# Metal dependencies
Expand Down
2 changes: 1 addition & 1 deletion naga/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naga"
version = "0.19.0"
version = "0.19.2"
authors = ["gfx-rs developers"]
edition = "2021"
description = "Shader translation infrastructure"
Expand Down
8 changes: 4 additions & 4 deletions wgpu-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgpu-core"
version = "0.19.0"
version = "0.19.3"
authors = ["gfx-rs developers"]
edition = "2021"
description = "WebGPU core logic on wgpu-hal"
Expand Down Expand Up @@ -117,17 +117,17 @@ thiserror = "1"

[dependencies.naga]
path = "../naga"
version = "0.19.0"
version = "0.19.2"

[dependencies.wgt]
package = "wgpu-types"
path = "../wgpu-types"
version = "0.19.0"
version = "0.19.2"

[dependencies.hal]
package = "wgpu-hal"
path = "../wgpu-hal"
version = "0.19.0"
version = "0.19.3"
default_features = false

[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]
Expand Down
8 changes: 4 additions & 4 deletions wgpu-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgpu-hal"
version = "0.19.0"
version = "0.19.3"
authors = ["gfx-rs developers"]
edition = "2021"
description = "WebGPU hardware abstraction layer"
Expand Down Expand Up @@ -110,7 +110,7 @@ glow = { version = "0.13.1", optional = true }
[dependencies.wgt]
package = "wgpu-types"
path = "../wgpu-types"
version = "0.19.0"
version = "0.19.2"

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

[dependencies.naga]
path = "../naga"
version = "0.19.0"
version = "0.19.2"

[build-dependencies]
cfg_aliases.workspace = true

# DEV dependencies
[dev-dependencies.naga]
path = "../naga"
version = "0.19.0"
version = "0.19.2"
features = ["wgsl-in"]

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wgpu-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgpu-types"
version = "0.19.0"
version = "0.19.2"
authors = ["gfx-rs developers"]
edition = "2021"
description = "WebGPU types"
Expand Down

0 comments on commit 82dead0

Please sign in to comment.