mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
d60677b59e
* Replace cgmath with glam in the examples * Implement type_for_format! for glam * Remove comment where I'm freaking out because of OpenGL flashbacks * Update Cargo.toml Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update vulkano/autogen/formats.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Fix glam type_for_format * Format the code --------- Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com>
21 lines
427 B
TOML
21 lines
427 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]
|
|
glam = { workspace = true }
|
|
rand = { workspace = true }
|
|
vulkano = { workspace = true, features = ["macros"] }
|
|
vulkano-shaders = { workspace = true }
|
|
vulkano-util = { workspace = true }
|
|
winit = { workspace = true }
|