kubi/Cargo.toml

48 lines
874 B
TOML
Raw Normal View History

2023-11-21 07:08:22 -06:00
[workspace]
members = [
"kubi",
"kubi-server",
"kubi-shared",
"kubi-logging",
]
2023-11-21 07:08:22 -06:00
default-members = ["kubi"]
resolver = "2"
[profile.release-with-debug]
inherits = "release"
debug = true
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 1
[profile.dev.package.uflow]
opt-level = 3
2024-05-04 15:10:40 -05:00
[profile.dev.package.wgpu]
2023-11-21 07:08:22 -06:00
opt-level = 3
2024-05-04 15:10:40 -05:00
[profile.dev.package.wgpu-core]
opt-level = 3
[profile.dev.package.wgpu-hal]
2023-11-21 07:08:22 -06:00
opt-level = 3
2024-05-02 15:27:49 -05:00
[profile.dev.package.fastnoise-lite]
opt-level = 3
2023-11-21 07:08:22 -06:00
[profile.dev.package.rayon]
opt-level = 3
2024-02-12 15:59:49 -06:00
#this is cursed as fuck
#enabling debug assertions here causes the game to abort
[profile.dev.package.android-activity]
debug-assertions = false
2024-05-07 20:22:41 -05:00
# [patch.'https://github.com/griffi-gh/hui']
# hui = { path = "X:/Projects/hui/hui" }
# hui-winit = { path = "X:/Projects/hui/hui-winit" }
# hui-wgpu = { path = "X:/Projects/hui/hui-wgpu" }