Merge pull request #179 from NyxZuSehen/master

Removed shaderc from dependencies and bumped up wgpu version in beginner window tutorial
pull/183/head
sotrh 3 years ago committed by GitHub
commit 4e7d249943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
Cargo.lock generated

@ -2136,7 +2136,6 @@ dependencies = [
"futures",
"image",
"log",
"shaderc",
"wgpu",
"winit",
]
@ -2223,7 +2222,6 @@ dependencies = [
"futures",
"image",
"log",
"shaderc",
"wgpu",
"winit",
]

@ -14,7 +14,6 @@ path = "src/main.rs"
[dependencies]
image = "0.23"
winit = "0.24"
shaderc = "0.7"
cgmath = "0.18"
env_logger = "0.8"
log = "0.4"

@ -9,7 +9,6 @@ edition = "2018"
[dependencies]
image = "0.23"
winit = "0.24"
shaderc = "0.7"
cgmath = "0.18"
env_logger = "0.8"
log = "0.4"

@ -10,7 +10,6 @@ For the beginner stuff, we're going to keep things very simple, we'll add things
[dependencies]
image = "0.23"
winit = "0.24"
shaderc = "0.7"
cgmath = "0.18"
env_logger = "0.8"
log = "0.4"
@ -29,7 +28,7 @@ To enable the Vulkan backend, add this new section to `Cargo.toml`, and do not f
``` toml
[dependencies.wgpu]
version = "0.7"
version = "0.8"
features = ["vulkan-portability"]
```

Loading…
Cancel
Save