mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
1e9128795f
* Use workspace dependencies * Update CI workflow to account for the two workspaces * Make the tables in the root workspace a bit nicer to look at * Use workspace package version * Remove workspace package version * Make winit a workspace dependency as well
19 lines
575 B
TOML
19 lines
575 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 = { workspace = true }
|
|
# Provides the `shader!` macro that is used to generate code for using shaders.
|
|
vulkano-shaders = { 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.
|
|
winit = { workspace = true }
|