mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 01:16:31 +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]
|
[profile.test]
|
||||||
opt-level = 0
|
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]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
panic = 'abort'
|
panic = 'abort'
|
||||||
|
|||||||
Reference in New Issue
Block a user