[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 [workspace] members = ["crates/*"] default-members = ["crates/galactica"] resolver = "2" [workspace.package] keywords = [] version = "0.0.0" edition = "2021" rust-version = "1.70" categories = [] authors = [] homepage = "" repository = "" license = "" documentation = "" readme = "" [workspace.lints] [workspace.dependencies] galactica-util = { path = "crates/util" } galactica-content = { path = "crates/content" } galactica-render = { path = "crates/render" } galactica-system = { path = "crates/system" } galactica-packer = { path = "crates/packer" } galactica-playeragent = { path = "crates/playeragent" } galactica = { path = "crates/galactica" } image = { version = "0.24", features = ["png"] } serde = { version = "1.0.193", features = ["derive"] } winit = "0.28" wgpu = "0.18" bytemuck = { version = "1.12", features = ["derive"] } rapier2d = { version = "0.17.2" } nalgebra = "0.32.3" crossbeam = "0.8.3" pollster = "0.3" anyhow = "1.0" rand = "0.8.5" walkdir = "2.4.0" toml = "0.8.8" # Glyphon's crates.io release doesn't support wgpu 0.18 yet glyphon = { git = "https://github.com/grovesNL/glyphon.git", rev = "b15437b87f4082e7a96a2ba05ed5063a6047cf95" }