mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
[rs] Merge #514
514: Release version 0.6 r=kvark a=kvark Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com>
This commit is contained in:
commit
01a019f84a
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wgpu"
|
name = "wgpu"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
authors = ["wgpu developers"]
|
authors = ["wgpu developers"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Rusty WebGPU API wrapper"
|
description = "Rusty WebGPU API wrapper"
|
||||||
@ -24,16 +24,16 @@ vulkan-portability = ["wgc/gfx-backend-vulkan"]
|
|||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wgc]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wgc]
|
||||||
package = "wgpu-core"
|
package = "wgpu-core"
|
||||||
version = "0.5"
|
version = "0.6"
|
||||||
git = "https://github.com/gfx-rs/wgpu"
|
#git = "https://github.com/gfx-rs/wgpu"
|
||||||
rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
|
#rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
|
||||||
features = ["raw-window-handle"]
|
features = ["raw-window-handle"]
|
||||||
|
|
||||||
[dependencies.wgt]
|
[dependencies.wgt]
|
||||||
package = "wgpu-types"
|
package = "wgpu-types"
|
||||||
version = "0.5"
|
version = "0.6"
|
||||||
git = "https://github.com/gfx-rs/wgpu"
|
#git = "https://github.com/gfx-rs/wgpu"
|
||||||
rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
|
#rev = "096c57008f2907c07ddaa7d0ff02fae21a5e676b"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
arrayvec = "0.5"
|
arrayvec = "0.5"
|
||||||
@ -57,14 +57,12 @@ png = "0.16"
|
|||||||
winit = { version = "0.22.1", features = ["web-sys"] }
|
winit = { version = "0.22.1", features = ["web-sys"] }
|
||||||
rand = { version = "0.7.2", features = ["wasm-bindgen"] }
|
rand = { version = "0.7.2", features = ["wasm-bindgen"] }
|
||||||
bytemuck = "1"
|
bytemuck = "1"
|
||||||
noise = "0.6.0"
|
noise = "0.6"
|
||||||
ddsfile = "0.4.0"
|
ddsfile = "0.4"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.subscriber]
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.subscriber]
|
||||||
package = "wgpu-subscriber"
|
package = "wgpu-subscriber"
|
||||||
version = "0.1"
|
version = "0.1"
|
||||||
git = "https://github.com/gfx-rs/subscriber"
|
|
||||||
rev = "cdc9feb53f152f9c41905ed9efeff2c1ed214361"
|
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name="hello-compute"
|
name="hello-compute"
|
||||||
@ -72,8 +70,8 @@ path="examples/hello-compute/main.rs"
|
|||||||
test = true
|
test = true
|
||||||
|
|
||||||
[patch."https://github.com/gfx-rs/wgpu"]
|
[patch."https://github.com/gfx-rs/wgpu"]
|
||||||
#wgpu-types = { version = "0.5", path = "../wgpu/wgpu-types" }
|
#wgpu-types = { version = "0.6", path = "../wgpu/wgpu-types" }
|
||||||
#wgpu-core = { version = "0.5", path = "../wgpu/wgpu-core" }
|
#wgpu-core = { version = "0.6", path = "../wgpu/wgpu-core" }
|
||||||
|
|
||||||
[patch."https://github.com/gfx-rs/subscriber"]
|
[patch."https://github.com/gfx-rs/subscriber"]
|
||||||
#wgpu-subscriber = { version = "0.1", path = "../subscriber" }
|
#wgpu-subscriber = { version = "0.1", path = "../subscriber" }
|
||||||
@ -82,16 +80,16 @@ test = true
|
|||||||
#naga = { path = "../naga" }
|
#naga = { path = "../naga" }
|
||||||
|
|
||||||
[patch."https://github.com/gfx-rs/gfx-extras"]
|
[patch."https://github.com/gfx-rs/gfx-extras"]
|
||||||
#gfx-descriptor = { version = "0.1.0", path = "../gfx-extras/gfx-descriptor" }
|
#gfx-descriptor = { version = "0.2", path = "../gfx-extras/gfx-descriptor" }
|
||||||
#gfx-memory = { version = "0.1.0", path = "../gfx-extras/gfx-memory" }
|
#gfx-memory = { version = "0.2", path = "../gfx-extras/gfx-memory" }
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
#gfx-hal = { version = "0.5.0", path = "../gfx/src/hal" }
|
#gfx-hal = { version = "0.6", path = "../gfx/src/hal" }
|
||||||
#gfx-backend-empty = { version = "0.5.0", path = "../gfx/src/backend/empty" }
|
#gfx-backend-empty = { version = "0.6", path = "../gfx/src/backend/empty" }
|
||||||
#gfx-backend-vulkan = { version = "0.5.0", path = "../gfx/src/backend/vulkan" }
|
#gfx-backend-vulkan = { version = "0.6", path = "../gfx/src/backend/vulkan" }
|
||||||
#gfx-backend-dx12 = { version = "0.5.0", path = "../gfx/src/backend/dx12" }
|
#gfx-backend-dx12 = { version = "0.6", path = "../gfx/src/backend/dx12" }
|
||||||
#gfx-backend-dx11 = { version = "0.5.0", path = "../gfx/src/backend/dx11" }
|
#gfx-backend-dx11 = { version = "0.6", path = "../gfx/src/backend/dx11" }
|
||||||
#gfx-backend-metal = { version = "0.5.0", path = "../gfx/src/backend/metal" }
|
#gfx-backend-metal = { version = "0.6", path = "../gfx/src/backend/metal" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
objc = "0.2.7"
|
objc = "0.2.7"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user