Galactica/Cargo.toml

70 lines
1.5 KiB
TOML
Raw Normal View History

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-02 22:11:33 -08:00
galactica-constants = { path = "crates/constants" }
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-01 15:41:47 -08:00
galactica-world = { path = "crates/world" }
2024-01-02 19:14:13 -08:00
galactica-behavior = { path = "crates/behavior" }
2024-01-01 15:41:47 -08:00
galactica-gameobject = { path = "crates/gameobject" }
2024-01-01 16:43:29 -08:00
galactica-ui = { path = "crates/ui" }
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"] }
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"