40 lines
588 B
TOML
40 lines
588 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["engine","subcrates/zen_core"]
|
|
|
|
[profile.dev]
|
|
|
|
rpath = false
|
|
panic = "abort"
|
|
lto = "off"
|
|
opt-level = 0
|
|
debug = false
|
|
overflow-checks = false
|
|
incremental = true
|
|
codegen-units = 512
|
|
|
|
|
|
strip = "symbols"
|
|
debug-assertions = true
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 0
|
|
debug = false
|
|
overflow-checks = false
|
|
incremental = true
|
|
codegen-units = 512
|
|
|
|
|
|
strip = "symbols"
|
|
debug-assertions = true
|
|
|
|
|
|
[workspace.dependencies]
|
|
lazy_static = "1.5.0"
|
|
parking_lot = "0.12.3"
|
|
|
|
[profile.release]
|
|
debug-assertions = false
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|