2024-02-21 08:08:50 +00:00
|
|
|
[package]
|
|
|
|
name = "triangle-util"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "triangle-util"
|
|
|
|
path = "main.rs"
|
|
|
|
test = false
|
|
|
|
bench = false
|
|
|
|
doc = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# The `vulkano` crate is the main crate that you must use to use Vulkan.
|
2024-09-11 15:02:27 +00:00
|
|
|
vulkano = { workspace = true, default-features = true }
|
2024-02-21 08:08:50 +00:00
|
|
|
# Provides the `shader!` macro that is used to generate code for using shaders.
|
|
|
|
vulkano-shaders = { workspace = true }
|
|
|
|
# Contains the utility functions that make life easier.
|
|
|
|
vulkano-util = { workspace = true }
|
|
|
|
# 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.
|
2024-06-30 13:23:19 +00:00
|
|
|
winit = { workspace = true, default-features = true }
|