From 6d4b45ada1858222fba6211bad5a549c37fbace3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C8=9Bca=20Dumitru?= Date: Tue, 3 Dec 2024 20:37:43 +0200 Subject: [PATCH] Set `opt-level = 3` for `stackblur-iter` This has significant performance gains in debug. --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index b2e171d..214a3f9 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -2,3 +2,6 @@ RUST_BACKTRACE = "1" RUST_LOG = "info" KCSHOT_DISABLE_LOG_FILE = "1" + +[profile.dev.package.stackblur-iter] +opt-level = 3