This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [unstable] | |
| codegen-backend = true | |
| [profile.dev] | |
| # Compile using cranelift for massively faster compilation | |
| codegen-backend = "cranelift" | |
| # If you want to attach a debugger, set `debug = true` instead | |
| debug = "line-tables-only" | |
| # Assuming we don't do `catch_unwind`, we can safely abort on panics for some extra perf | |
| # but this often doesn't jive with dependencies, so uncomment this to check if your project still works with it |