vulkano/examples/async-update/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

20 lines
390 B
TOML

[package]
name = "async-update"
version = "0.0.0"
edition = "2021"
publish = false
[[bin]]
name = "async-update"
path = "main.rs"
test = false
bench = false
doc = false
[dependencies]
glam = { workspace = true }
rand = { workspace = true }
vulkano = { workspace = true, features = ["macros"] }
vulkano-shaders = { workspace = true }
winit = { workspace = true, default-features = true }