game/Cargo.toml

16 lines
345 B
TOML
Raw Normal View History

2023-05-13 09:41:36 +00:00
[package]
name = "game"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytemuck = { version = "1.13.1", features = ["derive"] }
cgmath = "0.18.0"
futures = "0.3.28"
2023-06-20 18:16:20 +00:00
image = "0.24.6"
2023-05-20 17:33:25 +00:00
tobj = "4.0.0"
2023-05-13 09:41:36 +00:00
wgpu = "0.16.0"
2023-06-20 18:16:20 +00:00
winit = { path = "../winit" }