From d6f4fd4ec755df5497be3d9f5f8a34655c0004ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 25 Jun 2024 14:21:58 +0200 Subject: [PATCH] cargo config: add `debug=true` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit else debug symbols are stipped with 1.79+. Signed-off-by: Fabian Grünbichler --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 3b5b6e487..a439c97b2 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -3,3 +3,6 @@ directory = "/usr/share/cargo/registry" [source.crates-io] replace-with = "debian-packages" + +[profile.release] +debug=true