CryZe / livesplit-one-desktop

Prototype implementation of LiveSplit One for the Desktop.
https://livesplit.org/
60 stars 11 forks source link

Optimize debug profile once Rust 1.41 is out #12

Closed CryZe closed 4 years ago

CryZe commented 4 years ago

In Rust 1.41 you can specify profile overrides for dependencies. This will allow us to drop back down to opt-level = 0 for the debug profile and use opt-level = 3 and debug-assertions = false for the dependencies where performance is critical, such as wgpu and cranelift. This should result in faster compilations and faster runtime performance.

CryZe commented 4 years ago

Pretty sure I did this.