Skip to content

Commit 8b63059

Browse files
committed
feat(codspeed): build with optimizations
1 parent 61d9904 commit 8b63059

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/codspeed/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ fn main() {
2626
// Disable warnings, as we will have lots of them
2727
.warnings(false)
2828
.extra_warnings(false)
29-
.cargo_warnings(false);
29+
.cargo_warnings(false)
30+
.opt_level(3);
3031

3132
let result = build.try_compile("instrument_hooks");
3233
match result {

0 commit comments

Comments
 (0)