vulkano/examples/runtime-shader/Cargo.toml
grego 252329cbf3
vulkano-util: do not pull the default winit features (#2533)
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>
2024-06-30 15:23:19 +02:00

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 }