From 50186e764ec0b25763c202ad5db9fccee13618ac Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Sun, 15 Sep 2024 14:25:23 +0200 Subject: [PATCH] build: enable full debuginfo for release builds --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index b5a399ce..1f941b30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ members = ["jay-config", "toml-config", "algorithms", "toml-spec"] [profile.release] panic = "abort" +debug = "full" [profile.dev] panic = "abort"