Galactica/crates/render/Cargo.toml

21 lines
413 B
TOML
Raw Normal View History

2023-12-31 18:39:37 -08:00
[package]
name = "galactica-render"
version = "0.0.0"
edition = "2021"
[dependencies]
2024-01-01 09:45:27 -08:00
# Internal crates
2023-12-31 18:39:37 -08:00
galactica-content = { path = "../content" }
2024-01-01 10:44:55 -08:00
galactica-constants = { path = "../constants" }
2023-12-31 18:39:37 -08:00
# Misc helpers
anyhow = "1.0"
cgmath = "0.18.0"
2024-01-01 09:45:27 -08:00
rand = "0.8.5"
2023-12-31 18:39:37 -08:00
# Files
image = { version = "0.24", features = ["png"] }
# Graphics
winit = "0.28"
wgpu = "0.18"
bytemuck = { version = "1.12", features = ["derive"] }