From 2c64028978bd61c517f956dae3a54d1353bf9530 Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Sun, 28 Nov 2021 17:13:27 +0100 Subject: [PATCH] Enable debug information for release --- 2021/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/2021/Cargo.toml b/2021/Cargo.toml index c49400f..0f16290 100644 --- a/2021/Cargo.toml +++ b/2021/Cargo.toml @@ -6,3 +6,7 @@ edition = "2021" [dependencies] clap = "3.0.0-beta.5" + +[profile.release] +# Keep debug information in release for better flamegraphs +debug = true