Skip to content

Commit 01a019f

Browse files
bors[bot]kvark
andauthored
[rs] Merge gfx-rs#514
514: Release version 0.6 r=kvark a=kvark Co-authored-by: Dzmitry Malyshau <[email protected]>
2 parents c15a642 + 2610544 commit 01a019f

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

wgpu/Cargo.toml

+19-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["wgpu developers"]
55
edition = "2018"
66
description = "Rusty WebGPU API wrapper"
@@ -24,16 +24,16 @@ vulkan-portability = ["wgc/gfx-backend-vulkan"]
2424

2525
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wgc]
2626
package = "wgpu-core"
27-
version = "0.5"
28-
git = "https://github.com/gfx-rs/wgpu"
29-
rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
27+
version = "0.6"
28+
#git = "https://github.com/gfx-rs/wgpu"
29+
#rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
3030
features = ["raw-window-handle"]
3131

3232
[dependencies.wgt]
3333
package = "wgpu-types"
34-
version = "0.5"
35-
git = "https://github.com/gfx-rs/wgpu"
36-
rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
34+
version = "0.6"
35+
#git = "https://github.com/gfx-rs/wgpu"
36+
#rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
3737

3838
[dependencies]
3939
arrayvec = "0.5"
@@ -57,23 +57,21 @@ png = "0.16"
5757
winit = { version = "0.22.1", features = ["web-sys"] }
5858
rand = { version = "0.7.2", features = ["wasm-bindgen"] }
5959
bytemuck = "1"
60-
noise = "0.6.0"
61-
ddsfile = "0.4.0"
60+
noise = "0.6"
61+
ddsfile = "0.4"
6262

6363
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.subscriber]
6464
package = "wgpu-subscriber"
6565
version = "0.1"
66-
git = "https://github.com/gfx-rs/subscriber"
67-
rev = "cdc9feb53f152f9c41905ed9efeff2c1ed214361"
6866

6967
[[example]]
7068
name="hello-compute"
7169
path="examples/hello-compute/main.rs"
7270
test = true
7371

7472
[patch."https://github.com/gfx-rs/wgpu"]
75-
#wgpu-types = { version = "0.5", path = "../wgpu/wgpu-types" }
76-
#wgpu-core = { version = "0.5", path = "../wgpu/wgpu-core" }
73+
#wgpu-types = { version = "0.6", path = "../wgpu/wgpu-types" }
74+
#wgpu-core = { version = "0.6", path = "../wgpu/wgpu-core" }
7775

7876
[patch."https://github.com/gfx-rs/subscriber"]
7977
#wgpu-subscriber = { version = "0.1", path = "../subscriber" }
@@ -82,16 +80,16 @@ test = true
8280
#naga = { path = "../naga" }
8381

8482
[patch."https://github.com/gfx-rs/gfx-extras"]
85-
#gfx-descriptor = { version = "0.1.0", path = "../gfx-extras/gfx-descriptor" }
86-
#gfx-memory = { version = "0.1.0", path = "../gfx-extras/gfx-memory" }
83+
#gfx-descriptor = { version = "0.2", path = "../gfx-extras/gfx-descriptor" }
84+
#gfx-memory = { version = "0.2", path = "../gfx-extras/gfx-memory" }
8785

8886
[patch.crates-io]
89-
#gfx-hal = { version = "0.5.0", path = "../gfx/src/hal" }
90-
#gfx-backend-empty = { version = "0.5.0", path = "../gfx/src/backend/empty" }
91-
#gfx-backend-vulkan = { version = "0.5.0", path = "../gfx/src/backend/vulkan" }
92-
#gfx-backend-dx12 = { version = "0.5.0", path = "../gfx/src/backend/dx12" }
93-
#gfx-backend-dx11 = { version = "0.5.0", path = "../gfx/src/backend/dx11" }
94-
#gfx-backend-metal = { version = "0.5.0", path = "../gfx/src/backend/metal" }
87+
#gfx-hal = { version = "0.6", path = "../gfx/src/hal" }
88+
#gfx-backend-empty = { version = "0.6", path = "../gfx/src/backend/empty" }
89+
#gfx-backend-vulkan = { version = "0.6", path = "../gfx/src/backend/vulkan" }
90+
#gfx-backend-dx12 = { version = "0.6", path = "../gfx/src/backend/dx12" }
91+
#gfx-backend-dx11 = { version = "0.6", path = "../gfx/src/backend/dx11" }
92+
#gfx-backend-metal = { version = "0.6", path = "../gfx/src/backend/metal" }
9593

9694
[target.'cfg(target_os = "macos")'.dependencies]
9795
objc = "0.2.7"

0 commit comments

Comments
 (0)