set opt-level = 1 on the dev profile by default
This commit is contained in:
parent
231ba10f1e
commit
df31483cbd
|
@ -3,3 +3,9 @@ members = [
|
||||||
"ggdt",
|
"ggdt",
|
||||||
"examples/*",
|
"examples/*",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# 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
|
Loading…
Reference in a new issue