From 1d8a0dc3a4ffd2c5a20935af212b71eda9523773 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 19 Jun 2025 14:27:52 -0700 Subject: [PATCH] Add a release-debug profile This profile builds binaries for release, but includes debugging information. Useful for profiling! --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 49b9a15..37c14db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,7 @@ members = [ "position", ] resolver = "3" + +[profile.release-debug] +inherits = "release" +debug = true