From 5a701b6a5ee89b40e017bfcfedda2bbb29302fdd Mon Sep 17 00:00:00 2001 From: oxalica Date: Sat, 21 Sep 2024 07:33:58 -0400 Subject: [PATCH] build: reduce debuginfo for dev build --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e4d18f9..2939da7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,5 +15,8 @@ print_stdout = "warn" todo = "warn" unwrap_used = "warn" +[profile.dev] +debug = "line-tables-only" + [profile.bench] debug = "line-tables-only"