We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[profile.release] strip = true # Strip symbols from binary (doesn't affect runtime speed) panic = "abort" # Terminate on panic (faster than unwinding) overflow-checks = false # Disable integer overflow checks for speed opt-level = 3 # Maximum optimization for speed lto = true # Link-time optimization (beneficial for speed) incremental = false # Disable incremental compilation for better optimization debug = false # No debug info for maximum performance codegen-units = 1 # Fewer codegen units allow more aggressive inter-procedural optimizations [profile.dev] opt-level = 0 # No optimization for faster compilation debug = true # Full debug info [workspace] resolver = "3" members = ["cl", "en", "hq", "xx", "zz"]
Crashes at line which begins with codegen-units.
codegen-units
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Crashes at line which begins with
codegen-units
.The text was updated successfully, but these errors were encountered: