From 5024cf7002b262b176ba809af81600e4e9508c56 Mon Sep 17 00:00:00 2001 From: ProofOfConcept Date: Thu, 12 Mar 2026 18:11:09 -0400 Subject: [PATCH] enable frame pointers and debug info in release builds So we can profile with perf when the daemon spins. --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 7a21e2a..a223f69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,3 +8,8 @@ edition = "2021" [profile.release] opt-level = 2 +debug = 1 +frame-pointer = "always" + +[profile.release.package."*"] +debug = false