compile every build.rs with optimization

This commit is contained in:
Irevoire 2021-06-08 11:18:49 +02:00
parent fd032165d7
commit c82a382b0b
No known key found for this signature in database
GPG Key ID: 7A6A970C96104F1B

View File

@ -7,3 +7,13 @@ debug = true
[profile.bench]
debug = true
# Set the settings for build scripts and proc-macros.
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 3
[profile.bench.build-override]
opt-level = 3
[profile.test.build-override]
opt-level = 3