mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2025-02-16 17:12:29 +00:00
![marc0246](/assets/img/avatar_default.png)
* Make each example its own workspace member * Fix runtime-shader example * Fix shader-include example * Fix teapot example * Fix `run_all.sh` * Fix output files getting saved in cwd * Fix spelling for examples readme filename * Remove wrong leftover dependencies for gl-interop * Fix pipeline-cache example * Clearer .gitignore * Help cargo be less useless
19 lines
581 B
TOML
19 lines
581 B
TOML
[package]
|
|
name = "triangle"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "triangle"
|
|
path = "main.rs"
|
|
|
|
[dependencies]
|
|
# The `vulkano` crate is the main crate that you must use to use Vulkan.
|
|
vulkano = { path = "../../vulkano" }
|
|
# Provides the `shader!` macro that is used to generate code for using shaders.
|
|
vulkano-shaders = { path = "../../vulkano-shaders" }
|
|
# 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.
|
|
winit = "0.28"
|