mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-05 18:25:57 +00:00
cargo: Add release-fast profile (#13464)
This saves us ~1min of linking time on my Linux machine. Release Notes: - N/A Co-authored-by: Piotr <piotr@zed.dev>
This commit is contained in:
parent
6cc3a4d95c
commit
3ee3c6a3bd
1 changed files with 5 additions and 0 deletions
|
@ -482,6 +482,11 @@ codegen-units = 1
|
|||
[profile.release.package]
|
||||
zed = { codegen-units = 16 }
|
||||
|
||||
[profile.release-fast]
|
||||
inherits = "release"
|
||||
lto = false
|
||||
codegen-units = 16
|
||||
|
||||
[workspace.lints.clippy]
|
||||
dbg_macro = "deny"
|
||||
todo = "deny"
|
||||
|
|
Loading…
Reference in a new issue