Gered
9d02e23e9a
since we're using 2021 edition, resolver = 2 is the default, but this apparently needs to be explicitly set at the workspace level
13 lines
440 B
TOML
13 lines
440 B
TOML
[workspace]
|
|
members = [
|
|
"ggdt",
|
|
"ggdt_imgui",
|
|
"examples/*",
|
|
]
|
|
resolver = "2"
|
|
|
|
# some stuff is becoming noticably slow with default dev profile settings (opt-level = 0). especially any of the
|
|
# fancier triangle_2d drawing stuff. while there are many optimizations still left to be made, it seems like a good
|
|
# compromise on build time vs optimizations to keep opt-level at 1 while actively developing.
|
|
[profile.dev]
|
|
opt-level = 1 |