Galactica/Cargo.toml

56 lines
931 B
TOML
Raw Normal View History

2023-12-20 19:05:12 -08:00
[package]
name = "game"
version = "0.1.0"
edition = "2021"
2023-12-22 14:13:32 -08:00
[profile.dev]
opt-level = 0
debug = true
strip = false
debug-assertions = true
overflow-checks = true
lto = false
panic = "unwind"
incremental = true
codegen-units = 256
rpath = false
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
strip = "symbols"
lto = "fat"
codegen-units = 1
panic = "abort"
incremental = false
rpath = false
2023-12-29 15:14:04 -08:00
[workspace]
members = ["crates/content"]
2023-12-20 19:05:12 -08:00
[dependencies]
2023-12-29 15:14:04 -08:00
# Internal crates
galactica-content = { path = "crates/content" }
2023-12-22 22:46:35 -08:00
# Files
image = { version = "0.24", features = ["png"] }
toml = "0.8.8"
serde = { version = "1.0.193", features = ["derive"] }
# Graphics
2023-12-22 16:51:21 -08:00
winit = "0.28"
wgpu = "0.18"
bytemuck = { version = "1.12", features = ["derive"] }
2023-12-29 15:14:04 -08:00
# Physics
rapier2d = "0.17.2"
nalgebra = "0.32.3"
crossbeam = "0.8.3"
2023-12-22 22:46:35 -08:00
# Misc helpers
pollster = "0.3"
2023-12-22 16:51:21 -08:00
anyhow = "1.0"
cgmath = "0.18.0"
2023-12-22 22:46:35 -08:00
rand = "0.8.5"
2023-12-24 23:03:00 -08:00
walkdir = "2.4.0"