alacritty/Cargo.toml
Kirill Chibisov d0078ffc21
Use thin instead of fat LTO
The performance between `thin` and `fat` is in the margin of error,
however `thin` LTO is way faster to build.
2023-03-11 23:16:49 +03:00

12 lines
186 B
TOML

[workspace]
members = [
"alacritty",
"alacritty_terminal",
"alacritty_config",
"alacritty_config_derive",
]
[profile.release]
lto = "thin"
debug = 1
incremental = false