mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 23:05:43 +00:00
21 lines
405 B
TOML
21 lines
405 B
TOML
[package]
|
|
name = "multi-window-game-of-life"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "multi-window-game-of-life"
|
|
path = "main.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
cgmath = { workspace = true }
|
|
rand = { workspace = true }
|
|
vulkano = { workspace = true }
|
|
vulkano-shaders = { workspace = true }
|
|
vulkano-util = { workspace = true }
|
|
winit = { workspace = true }
|