Galactica/Cargo.toml

77 lines
1.6 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
2024-01-23 15:50:31 -08:00
# Rapier is a LOT faster with optimizations,
# make sure they're always enabled
[profile.dev.package.rapier2d]
opt-level = 3
codegen-units = 1
2023-12-22 14:13:32 -08:00
[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-11 22:28:02 -08:00
galactica-system = { path = "crates/system" }
2024-01-03 19:49:06 -08:00
galactica-packer = { path = "crates/packer" }
2024-01-11 11:28:51 -08:00
galactica-playeragent = { path = "crates/playeragent" }
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-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-17 10:17:27 -08:00
glyphon = "0.4.1"
lazy_static = "1.4.0"
2024-01-23 16:56:56 -08:00
clap = { version = "4.4.18", features = ["derive"] }
2024-01-23 21:21:31 -08:00
log = "0.4.20"
log4rs = { version = "1.2.0", features = ["console_appender"] }