rust_opengl/config.toml

10 lines
333 B
TOML
Raw Permalink Normal View History

2024-08-22 12:12:25 +00:00
[build]
rustflags = ["-C", "target-feature=+crt-static"]
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*