18 lines
332 B
TOML
18 lines
332 B
TOML
[package]
|
|
name = "galactica-render"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
galactica-content = { path = "../content" }
|
|
|
|
# Misc helpers
|
|
anyhow = "1.0"
|
|
cgmath = "0.18.0"
|
|
# Files
|
|
image = { version = "0.24", features = ["png"] }
|
|
# Graphics
|
|
winit = "0.28"
|
|
wgpu = "0.18"
|
|
bytemuck = { version = "1.12", features = ["derive"] }
|