From a323155b99de591e0713d1bd31c32dceed569c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Mon, 29 Mar 2021 15:22:07 +0900 Subject: [PATCH] Faster dev builds on OSX if using Rust 1.51. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d7dab22ed..7511688e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,6 @@ members = [ # Build helix-syntax in release mode to make the code path faster in development. # [profile.dev.package."helix-syntax"] # opt-level = 3 + +[profile.dev] +split-debuginfo = "unpacked"