kubi/Cargo.toml

48 lines
874 B
TOML
Raw Normal View History

2023-11-21 13:08:22 +00:00
[workspace]
members = [
"kubi",
"kubi-server",
"kubi-shared",
"kubi-logging",
]
2023-11-21 13:08:22 +00: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 20:10:40 +00:00
[profile.dev.package.wgpu]
2023-11-21 13:08:22 +00:00
opt-level = 3
2024-05-04 20:10:40 +00:00
[profile.dev.package.wgpu-core]
opt-level = 3
[profile.dev.package.wgpu-hal]
2023-11-21 13:08:22 +00:00
opt-level = 3
2024-05-02 20:27:49 +00:00
[profile.dev.package.fastnoise-lite]
opt-level = 3
2023-11-21 13:08:22 +00:00
[profile.dev.package.rayon]
opt-level = 3
2024-02-12 21:59:49 +00: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-08 01:22:41 +00: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" }