mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
252329cbf3
This allows a downstream user to set which winit features to use, possibly sparing a lot of dependencies from being pulled and compiled. Co-authored-by: Rua <ruawhitepaw@gmail.com>
17 lines
275 B
TOML
17 lines
275 B
TOML
[package]
|
|
name = "runtime-shader"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "runtime-shader"
|
|
path = "main.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
vulkano = { workspace = true }
|
|
winit = { workspace = true, default-features = true }
|