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]
|
2024-01-02 22:11:33 -08:00
|
|
|
members = ["crates/*"]
|
|
|
|
default-members = ["crates/galactica"]
|
|
|
|
resolver = "2"
|
2023-12-29 15:14:04 -08:00
|
|
|
|
2024-01-02 22:11:33 -08:00
|
|
|
[workspace.package]
|
|
|
|
keywords = []
|
2024-01-02 22:19:09 -08:00
|
|
|
version = "0.0.0"
|
2024-01-02 22:11:33 -08:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.70"
|
|
|
|
categories = []
|
|
|
|
authors = []
|
|
|
|
homepage = ""
|
|
|
|
repository = ""
|
|
|
|
license = ""
|
2024-01-02 22:19:09 -08:00
|
|
|
documentation = ""
|
|
|
|
readme = ""
|
2024-01-02 22:11:33 -08:00
|
|
|
|
2024-01-02 22:19:09 -08:00
|
|
|
[workspace.lints]
|
2023-12-29 15:14:04 -08:00
|
|
|
|
2024-01-02 22:19:09 -08:00
|
|
|
[workspace.dependencies]
|
2024-01-10 18:53:19 -08:00
|
|
|
galactica-util = { path = "crates/util" }
|
2023-12-29 15:14:04 -08:00
|
|
|
galactica-content = { path = "crates/content" }
|
2023-12-31 18:39:37 -08:00
|
|
|
galactica-render = { path = "crates/render" }
|
2024-01-09 21:45:30 -08:00
|
|
|
galactica-systemsim = { path = "crates/systemsim" }
|
|
|
|
galactica-galaxy = { path = "crates/galaxy" }
|
2024-01-03 19:49:06 -08:00
|
|
|
galactica-packer = { path = "crates/packer" }
|
2024-01-02 22:11:33 -08:00
|
|
|
galactica = { path = "crates/galactica" }
|
2023-12-29 15:14:04 -08:00
|
|
|
|
2023-12-22 22:46:35 -08:00
|
|
|
image = { version = "0.24", features = ["png"] }
|
2024-01-02 22:11:33 -08:00
|
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
2024-01-08 15:17:20 -08:00
|
|
|
# TODO: update winit, but wgpu seems to be tied to this version
|
2023-12-22 16:51:21 -08:00
|
|
|
winit = "0.28"
|
|
|
|
wgpu = "0.18"
|
2024-01-02 22:11:33 -08:00
|
|
|
bytemuck = { version = "1.12", features = ["derive"] }
|
2023-12-31 18:39:37 -08:00
|
|
|
rapier2d = { version = "0.17.2" }
|
2023-12-29 15:14:04 -08:00
|
|
|
nalgebra = "0.32.3"
|
|
|
|
crossbeam = "0.8.3"
|
2023-12-22 22:46:35 -08:00
|
|
|
pollster = "0.3"
|
2023-12-22 16:51:21 -08:00
|
|
|
anyhow = "1.0"
|
2023-12-31 18:39:37 -08:00
|
|
|
# TODO: migrate to nalgebra
|
2023-12-22 16:51:21 -08:00
|
|
|
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"
|
2024-01-02 22:11:33 -08:00
|
|
|
toml = "0.8.8"
|
2024-01-10 17:53:27 -08:00
|
|
|
|
|
|
|
# Glyphon's crates.io release doesn't support wgpu 0.18 yet
|
|
|
|
glyphon = { git = "https://github.com/grovesNL/glyphon.git", branch = "main" }
|