Skip to content

Commit

Permalink
Bump wgpu versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Jul 21, 2023
1 parent bdb98b1 commit 493ff2e
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 53 deletions.
57 changes: 29 additions & 28 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,28 @@ keywords = ["graphics"]
license = "MIT OR Apache-2.0"
homepage = "https://wgpu.rs/"
repository = "https://github.com/gfx-rs/wgpu"
version = "0.16.0"
version = "0.17.0"
authors = ["wgpu developers"]

[workspace.dependencies.wgc]
package = "wgpu-core"
path = "./wgpu-core"
version = "0.16"
version = "0.17"

[workspace.dependencies.wgt]
package = "wgpu-types"
path = "./wgpu-types"
version = "0.16"
version = "0.17"

[workspace.dependencies.hal]
package = "wgpu-hal"
path = "./wgpu-hal"
version = "0.16"
version = "0.17"

[workspace.dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "409239c0e2313bfd0dc4fd64f8c3021185ccef1b"
version = "0.12.0"
rev = "bac2d82a430fbfcf100ee22b7c3bc12f3d593079"
version = "0.13.0"

[workspace.dependencies]
anyhow = "1.0"
Expand Down Expand Up @@ -93,14 +93,16 @@ serde_json = "1.0.96"
smallvec = "1"
static_assertions = "1.1.0"
thiserror = "1"
wgpu = { version = "0.16", path = "./wgpu" }
wgpu-example = { version = "0.16", path = "./examples/common" }
wgpu-test = { version = "0.16", path = "./tests"}
wgpu = { version = "0.17.0", path = "./wgpu" }
wgpu-core = { version = "0.17.0", path = "./wgpu-core" }
wgpu-example = { version = "0.17.0", path = "./examples/common" }
wgpu-test = { version = "0.17", path = "./tests"}
wgpu-types = { version = "0.17.0", path = "./wgpu-types" }
winit = "0.27.1"

# Metal dependencies
block = "0.1"
metal = "0.25.0"
metal = "0.26.0"
objc = "0.2.5"
core-graphics-types = "0.1"

Expand Down Expand Up @@ -141,8 +143,6 @@ deno_webidl = "0.106.0"
deno_webgpu = { path = "./deno_webgpu" }
tokio = "1.28.2"
termcolor = "1.2.0"
wgpu-core = { path = "./wgpu-core" }
wgpu-types = { path = "./wgpu-types" }

[patch."https://github.com/gfx-rs/naga"]
#naga = { path = "../naga" }
Expand Down
10 changes: 5 additions & 5 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.16.0"
version = "0.17.0"
authors = ["wgpu developers"]
edition = "2021"
description = "WebGPU core logic on wgpu-hal"
Expand Down Expand Up @@ -72,19 +72,19 @@ thiserror = "1"

[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "409239c0e2313bfd0dc4fd64f8c3021185ccef1b"
version = "0.12.0"
rev = "bac2d82a430fbfcf100ee22b7c3bc12f3d593079"
version = "0.13.0"
features = ["clone", "span", "validate"]

[dependencies.wgt]
package = "wgpu-types"
path = "../wgpu-types"
version = "0.16"
version = "0.17"

[dependencies.hal]
package = "wgpu-hal"
path = "../wgpu-hal"
version = "0.16"
version = "0.17"
default_features = false

[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]
Expand Down
14 changes: 7 additions & 7 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.16.0"
version = "0.17.0"
authors = ["wgpu developers"]
edition = "2021"
description = "WebGPU hardware abstraction layer"
Expand Down Expand Up @@ -71,7 +71,7 @@ glow = { version = "0.12.3", optional = true }
[dependencies.wgt]
package = "wgpu-types"
path = "../wgpu-types"
version = "0.16"
version = "0.17"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# backend: Vulkan
Expand Down Expand Up @@ -103,7 +103,7 @@ d3d12 = { version = "0.7", features = ["libloading"], optional = true }
# backend: Metal
block = { version = "0.1", optional = true }

metal = { git = "https://github.com/gfx-rs/metal-rs.git", rev = "a6a0446", default_features = false }
metal = { version = "0.26.0", default_features = false }
objc = "0.2.5"
core-graphics-types = "0.1"

Expand All @@ -120,15 +120,15 @@ android_system_properties = "0.1.1"

[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "409239c0e2313bfd0dc4fd64f8c3021185ccef1b"
version = "0.12.0"
rev = "bac2d82a430fbfcf100ee22b7c3bc12f3d593079"
version = "0.13.0"
features = ["clone"]

# DEV dependencies
[dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "409239c0e2313bfd0dc4fd64f8c3021185ccef1b"
version = "0.12.0"
rev = "bac2d82a430fbfcf100ee22b7c3bc12f3d593079"
version = "0.13.0"
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.16.0"
version = "0.17.0"
authors = ["wgpu developers"]
edition = "2021"
description = "WebGPU types"
Expand Down

0 comments on commit 493ff2e

Please sign in to comment.