From 8355f0dcd399cd99438a283e161144a9d4399296 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sat, 7 Dec 2019 02:51:23 +0100 Subject: [PATCH] include debug information in release mode This is used for profiling --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 8d5928e..1cf828b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,3 +2,6 @@ members = ["aoc*"] default-members = ["aoc2019"] + +[profile.release] +debug = true