mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
Always optimize dependencies
They are only built once, but the time of `cargo nextest run` is reduced by around 40% as a result.
This commit is contained in:
@@ -13,6 +13,12 @@ opt-level = 1
|
||||
[profile.test]
|
||||
opt-level = 0
|
||||
|
||||
# Always optimize dependencies.
|
||||
# This does not apply to crates in the workspace.
|
||||
# <https://doc.rust-lang.org/cargo/reference/profiles.html#overrides>
|
||||
[profile.dev.package."*"]
|
||||
opt-level = 3
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
panic = 'abort'
|
||||
|
||||
Reference in New Issue
Block a user