Skip to content
New issue

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

This Cargo.toml code is crashing the Even Better Toml extension. #755

Open
hq-zyrosk opened this issue Mar 1, 2025 · 0 comments
Open

This Cargo.toml code is crashing the Even Better Toml extension. #755

hq-zyrosk opened this issue Mar 1, 2025 · 0 comments

Comments

@hq-zyrosk
Copy link

[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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant