2016-04-23 11:24:56 +00:00
|
|
|
[package]
|
|
|
|
name = "examples"
|
2019-11-01 15:12:17 +00:00
|
|
|
version = "0.1.0"
|
2018-12-07 12:35:19 +00:00
|
|
|
edition = "2018"
|
2016-04-23 11:24:56 +00:00
|
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
2017-07-04 11:53:32 +00:00
|
|
|
publish = false
|
2016-04-23 11:24:56 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-12-07 12:35:19 +00:00
|
|
|
# The `vulkano` crate is the main crate that you must use to use Vulkan.
|
2016-04-23 11:24:56 +00:00
|
|
|
vulkano = { path = "../vulkano" }
|
2018-12-07 12:35:19 +00:00
|
|
|
# Provides the `shader!` macro that is used to generate code for using shaders.
|
2018-10-26 00:15:33 +00:00
|
|
|
vulkano-shaders = { path = "../vulkano-shaders" }
|
2018-12-07 12:35:19 +00:00
|
|
|
# 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.
|
2021-05-23 16:37:01 +00:00
|
|
|
winit = "0.25"
|
2018-12-07 12:35:19 +00:00
|
|
|
# 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.
|
2016-04-23 11:24:56 +00:00
|
|
|
vulkano-win = { path = "../vulkano-win" }
|
2018-12-07 12:35:19 +00:00
|
|
|
|
2021-02-05 19:35:24 +00:00
|
|
|
cgmath = "0.18"
|
|
|
|
png = "0.16"
|
|
|
|
time = "0.2"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
ron = "0.6"
|