Remove vulkano-win dependency from examples (#2209)

This commit is contained in:
marc0246 2023-05-18 14:07:30 +02:00 committed by GitHub
parent 1bf682dc28
commit 08c245d7c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,9 +16,6 @@ vulkano-shaders = { path = "../vulkano-shaders" }
# The Vulkan library doesn't provide any functionality to create and handle windows, as # The Vulkan library doesn't provide any functionality to create and handle windows, as
# this would be out of scope. In order to open a window, we are going to use the `winit` crate. # this would be out of scope. In order to open a window, we are going to use the `winit` crate.
winit = "0.28" winit = "0.28"
# The `vulkano_win` crate is the link between `vulkano` and `winit`. Vulkano doesn't know about winit,
# and winit doesn't know about vulkano, so import a crate that will provide a link between the two.
vulkano-win = { path = "../vulkano-win" }
vulkano-util = { path = "../vulkano-util" } vulkano-util = { path = "../vulkano-util" }
cgmath = "0.18" cgmath = "0.18"