chore: Don't optimize build dependencies

Rust 1.41 shipped with the ability to specify optimization level
per dependency/dev-dependency.

This speeds up a full release build by ~20% on my machine.
This commit is contained in:
Mike Welsh 2020-02-12 15:43:58 -08:00
parent 560834ff6b
commit 6ea2a55207
1 changed files with 4 additions and 0 deletions

View File

@ -7,3 +7,7 @@ members = [
"web",
"scanner",
]
# Don't optimize build scripts and macros.
[profile.dev.build-override]
opt-level = 0